Path: blob/main/contrib/llvm-project/lldb/source/Commands/CommandObjectLanguage.cpp
39587 views
//===-- CommandObjectLanguage.cpp -----------------------------------------===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//78#include "CommandObjectLanguage.h"9101112#include "lldb/Target/LanguageRuntime.h"1314using namespace lldb;15using namespace lldb_private;1617CommandObjectLanguage::CommandObjectLanguage(CommandInterpreter &interpreter)18: CommandObjectMultiword(19interpreter, "language", "Commands specific to a source language.",20"language <language-name> <subcommand> [<subcommand-options>]") {21// Let the LanguageRuntime populates this command with subcommands22LanguageRuntime::InitializeCommands(this);23}2425CommandObjectLanguage::~CommandObjectLanguage() = default;262728