Split PrintOptions::printEverything into printEverything and printVerbose.

The former is for debugging, the latter is for detailed presentation to users.
swift -print-ast will continue using printEverything, as will swift-ide-test,
but all other features should use printVerbose.

Swift SVN r20432
This commit is contained in:
Jordan Rose
2014-07-23 22:28:55 +00:00
parent 4521194e91
commit a2af37a19b
9 changed files with 38 additions and 32 deletions

View File

@@ -136,8 +136,6 @@ void swift::ide::printSubmoduleInterface(
AdjustedOptions.PrintDefaultParameterPlaceholder = true;
AdjustedOptions.PrintAttrTransparent = false;
SmallVector<Decl *, 1> Decls;
M->getDisplayDecls(Decls);