forked from OSchip/llvm-project
DeclPrinter: describe what 'terse' output is.
llvm-svn: 162251
This commit is contained in:
parent
48cdc58f0a
commit
3e358ccf92
|
@ -134,7 +134,12 @@ struct PrintingPolicy {
|
|||
/// doesn't actually have 'bool' (because, e.g., it is defined as a macro).
|
||||
unsigned Bool : 1;
|
||||
|
||||
/// Don't print contents of DeclContexts. Used to provide a 'terse' output.
|
||||
/// \brief Don't print contents of DeclContexts. Used to provide a 'terse'
|
||||
/// output.
|
||||
///
|
||||
/// For example, in this mode we don't print function bodies, class members,
|
||||
/// declarations inside namespaces etc. Effectively, this should print
|
||||
/// only the requested declaration.
|
||||
unsigned DontRecurseInDeclContext : 1;
|
||||
|
||||
/// \brief If we are "dumping" rather than "pretty-printing", this points to
|
||||
|
|
Loading…
Reference in New Issue