DeclPrinter: describe what 'terse' output is.

llvm-svn: 162251
This commit is contained in:
Dmitri Gribenko 2012-08-21 02:30:28 +00:00
parent 48cdc58f0a
commit 3e358ccf92
1 changed files with 6 additions and 1 deletions

View File

@ -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