9 lines · plain
1include "../../../../include/lldb/Core/PropertiesBase.td"2 3let Definition = "language_cplusplus" in {4 def FunctionNameFormat: Property<"function-name-format", "FormatEntity">,5 Global,6 DefaultStringValue<"${function.return-left}${function.scope}${ansi.fg.yellow}${function.basename}${ansi.normal}${function.template-arguments}${function.formatted-arguments}${function.return-right}${function.qualifiers}${function.suffix}">,7 Desc<"C++ specific frame format string to use when displaying stack frame information for threads.">;8}9