Add frontend flag to serialize Syntax tree (#11095)

* Add frontend flag to serialize Syntax tree

* Rename dump-serialized-syntax-tree to emit-syntax
This commit is contained in:
Harlan
2017-07-21 14:23:50 -07:00
committed by GitHub
parent 48f26be865
commit 37f88e7372
7 changed files with 104 additions and 9 deletions

View File

@@ -23,6 +23,7 @@ bool FrontendOptions::actionHasOutput() const {
case Typecheck:
case DumpParse:
case DumpAST:
case EmitSyntax:
case DumpInterfaceHash:
case PrintAST:
case DumpScopeMaps:
@@ -56,6 +57,7 @@ bool FrontendOptions::actionIsImmediate() const {
case Typecheck:
case DumpParse:
case DumpAST:
case EmitSyntax:
case DumpInterfaceHash:
case PrintAST:
case DumpScopeMaps: