llvm/lldb/source/API/SBLanguageRuntime.cpp

//===-- SBLanguageRuntime.cpp ---------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//

#include "lldb/API/SBLanguageRuntime.h"
#include "lldb/Target/Language.h"
#include "lldb/Utility/Instrumentation.h"

usingnamespacelldb;
usingnamespacelldb_private;

lldb::LanguageType
SBLanguageRuntime::GetLanguageTypeFromString(const char *string) {}

const char *
SBLanguageRuntime::GetNameForLanguageType(lldb::LanguageType language) {}

bool SBLanguageRuntime::LanguageIsCPlusPlus(lldb::LanguageType language) {}

bool SBLanguageRuntime::LanguageIsObjC(lldb::LanguageType language) {}

bool SBLanguageRuntime::LanguageIsCFamily(lldb::LanguageType language) {}

bool SBLanguageRuntime::SupportsExceptionBreakpointsOnThrow(
    lldb::LanguageType language) {}

bool SBLanguageRuntime::SupportsExceptionBreakpointsOnCatch(
    lldb::LanguageType language) {}

const char *
SBLanguageRuntime::GetThrowKeywordForLanguage(lldb::LanguageType language) {}

const char *
SBLanguageRuntime::GetCatchKeywordForLanguage(lldb::LanguageType language) {}