aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/Language/CPlusPlus/LanguageCPlusPlusProperties.td
blob: 4d74a040f4de4e1b760d581b2dc43a7e0aad4124 (plain)
1
2
3
4
5
6
7
8
include "../../../../include/lldb/Core/PropertiesBase.td"

let Definition = "language_cplusplus" in {
  def FunctionNameFormat: Property<"function-name-format", "FormatEntity">,
    Global,
    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}">,
    Desc<"C++ specific frame format string to use when displaying stack frame information for threads.">;
}