You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by cd...@apache.org on 2016/04/11 15:59:46 UTC

[19/50] git commit: [flex-falcon] [refs/heads/feature/maven-migration] - ASParser: fixed starting position of function call arguments to include ( as documented

ASParser: fixed starting position of function call arguments to include ( as documented


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

Branch: refs/heads/feature/maven-migration
Commit: e1d5ab16711babe35c18218ebf0559426e0a04ca
Parents: fd2f51c
Author: Josh Tynjala <jo...@apache.org>
Authored: Fri Apr 1 12:42:02 2016 -0700
Committer: Josh Tynjala <jo...@apache.org>
Committed: Fri Apr 1 12:42:02 2016 -0700

----------------------------------------------------------------------
 .../src/org/apache/flex/compiler/internal/parsing/as/ASParser.g    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/e1d5ab16/compiler/src/org/apache/flex/compiler/internal/parsing/as/ASParser.g
----------------------------------------------------------------------
diff --git a/compiler/src/org/apache/flex/compiler/internal/parsing/as/ASParser.g b/compiler/src/org/apache/flex/compiler/internal/parsing/as/ASParser.g
index 443aaeb..835f63a 100644
--- a/compiler/src/org/apache/flex/compiler/internal/parsing/as/ASParser.g
+++ b/compiler/src/org/apache/flex/compiler/internal/parsing/as/ASParser.g
@@ -3113,7 +3113,7 @@ arguments[ExpressionNodeBase root] returns[ExpressionNodeBase n]
                     oldNode.setNewKeywordNode(null);
                 }
     		args = ((FunctionCallNode)n).getArgumentsNode();
-    		args.startAfter(lpT);
+    		args.startBefore(lpT);
     		args.endAfter(lpT);
     		disableSemicolonInsertion();
     	}