2015-07-03 12:57:06 -04:00
|
|
|
//===-- CommandObjectLanguage.cpp -------------------------------*- C++ -*-===//
|
|
|
|
|
//
|
2019-08-20 16:51:52 -04:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2015-07-03 12:57:06 -04:00
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
|
|
#include "CommandObjectLanguage.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "lldb/Target/LanguageRuntime.h"
|
|
|
|
|
|
|
|
|
|
using namespace lldb;
|
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
|
2016-07-23 16:50:09 -04:00
|
|
|
CommandObjectLanguage::CommandObjectLanguage(CommandInterpreter &interpreter)
|
2017-01-02 14:26:05 -05:00
|
|
|
: CommandObjectMultiword(
|
|
|
|
|
interpreter, "language", "Commands specific to a source language.",
|
|
|
|
|
"language <language-name> <subcommand> [<subcommand-options>]") {
|
|
|
|
|
// Let the LanguageRuntime populates this command with subcommands
|
|
|
|
|
LanguageRuntime::InitializeCommands(this);
|
2015-07-03 12:57:06 -04:00
|
|
|
}
|
|
|
|
|
|
2017-01-02 14:26:05 -05:00
|
|
|
CommandObjectLanguage::~CommandObjectLanguage() {}
|