Well I tried this, but something is wrong. I changed the tests to reflect my changes and I’m getting an error in the tests (in TestFlexJSGlobalClasses). How can I see the results of the test to see what’s wrong?
On May 10, 2016, at 6:09 PM, Alex Harui <aha...@adobe.com> wrote: > > > On 5/10/16, 8:03 AM, "Harbs" <harbs.li...@gmail.com> wrote: > >> foo = foo.plus(bar); > > OK, well in theory the compiler generated "foo" and is about to add > ".concat(" so you would get "foo.concat(" then "bar" would get emitted. > Try replacing ".concat" with: > > " = " > getWalker().walk(node.getLeftOperandNode()); // should re-output "foo" > "; " > getWalker().walk(node.getLeftOperandNode()); // should re-output "foo" > ".plus(" > > > Or something like that. If that doesn't work I will try to look at it > later today. > > -Alex >