You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2016/11/08 20:33:26 UTC

[2/2] git commit: [flex-falcon] [refs/heads/develop] - this seems to get rid of ant warnings and not break anything

this seems to get rid of ant warnings and not break anything


Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/db8768f8
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/db8768f8
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/db8768f8

Branch: refs/heads/develop
Commit: db8768f8f00282772fdae934a80a21bc60afb97a
Parents: 97d8732
Author: Alex Harui <ah...@apache.org>
Authored: Tue Nov 8 12:32:55 2016 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Tue Nov 8 12:32:55 2016 -0800

----------------------------------------------------------------------
 .../org/apache/flex/compiler/internal/parsing/as/ASParser.g      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/db8768f8/compiler/src/main/antlr/org/apache/flex/compiler/internal/parsing/as/ASParser.g
----------------------------------------------------------------------
diff --git a/compiler/src/main/antlr/org/apache/flex/compiler/internal/parsing/as/ASParser.g b/compiler/src/main/antlr/org/apache/flex/compiler/internal/parsing/as/ASParser.g
index 20afd5c..1d7a283 100644
--- a/compiler/src/main/antlr/org/apache/flex/compiler/internal/parsing/as/ASParser.g
+++ b/compiler/src/main/antlr/org/apache/flex/compiler/internal/parsing/as/ASParser.g
@@ -3201,11 +3201,11 @@ argumentList[ContainerNode args]
 					args.addItem(n);
 				}
 			}
-	|  rpT:TOKEN_PAREN_CLOSE
-    		{ args.endAfter(rpT); enableSemicolonInsertion(); break;}
 
     	)*
 
+		rpT:TOKEN_PAREN_CLOSE
+    		{ args.endAfter(rpT); enableSemicolonInsertion(); }
 
     ;