[Frontend] Introduce FrontendOptions::NoneAction, when the client wants custom control on how to handle an invocation.

This fixes SourceKit tests after r21537.

Swift SVN r21564
This commit is contained in:
Argyrios Kyrtzidis
2014-08-29 04:58:37 +00:00
parent 8f52302f8e
commit 0de5a66345
4 changed files with 17 additions and 9 deletions

View File

@@ -18,6 +18,7 @@ using namespace swift;
bool FrontendOptions::actionHasOutput() const {
switch (RequestedAction) {
case NoneAction:
case Parse:
case DumpParse:
case DumpAST:
@@ -41,6 +42,7 @@ bool FrontendOptions::actionHasOutput() const {
bool FrontendOptions::actionIsImmediate() const {
switch (RequestedAction) {
case NoneAction:
case Parse:
case DumpParse:
case DumpAST: