Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
Description
The following E4X expression:
list3 = list3.(attribute("name").length());
compiles to the following (which results in an "undefined" error)
list3 = list3.filter(function(node)
);
It should compile to the following (which works as expected)
list3 = list3.filter(function(node)
);