//===-- MSVCUndecoratedNameParser.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 "MSVCUndecoratedNameParser.h" #include <stack> MSVCUndecoratedNameParser::MSVCUndecoratedNameParser(llvm::StringRef name) { … } bool MSVCUndecoratedNameParser::IsMSVCUndecoratedName(llvm::StringRef name) { … } bool MSVCUndecoratedNameParser::ExtractContextAndIdentifier( llvm::StringRef name, llvm::StringRef &context, llvm::StringRef &identifier) { … } llvm::StringRef MSVCUndecoratedNameParser::DropScope(llvm::StringRef name) { … }