Skip to content

[lldb] Update Swift mangling example in type lookup #2120

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lldb/source/Plugins/Language/Swift/SwiftLanguage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1171,7 +1171,7 @@ std::unique_ptr<Language::TypeScavenger> SwiftLanguage::GetTypeScavenger() {
const char *SwiftLanguage::GetLanguageSpecificTypeLookupHelp() {
return "\nFor Swift, in addition to a simple type name (such as String, Int, "
"NSObject, ..), one can also provide:\n"
"- a mangled type name (e.g. _TtSi)\n"
"- a mangled type name (e.g. $sSiD)\n"
"- the name of a function, even if multiple overloads of it exist\n"
"- the name of an operator\n"
"- the name of a module available in the current target, which will "
Expand Down