Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Critical
-
Resolution: Fixed
-
Affects Version/s: 1.8-rc-3
-
Fix Version/s: 1.8-rc-4
-
Component/s: parser-antlr
-
Labels:None
-
Number of attachments :
Description
Extended command expressions such as:
a b c d
Are equivalent to calling:
a(b).c(d)
But in the case we have something like:
a b 1 2
Which would be supposed to be equivalent to:
a(b).1(2)
But the AST represented by that call just represents the 1.call(2) part, and the a and b parts are totally absent.