-
Notifications
You must be signed in to change notification settings - Fork 48
Open
Description
thing1
&thing2
&doStuffWithThing2()
&&doStuffWithThing1(&somethingFromThing2)
currently compiles to
var x0$, x1$;
x0$ = thing1;
x1$ = x0$.thing2;
x1$.doStuffWithThing2() && doStuffWithThing1(x1$.somethingFromThing2);
though it might be a nice feature to have N+1 ampersands refer to upper & scopes, ie
var x0$, x1$;
x0$ = thing1;
x1$ = x0$.thing2;
x0$.doStuffWithThing1(x1$.somethingFromThing2);
EDIT: (and &&&, &&&& etc. of course)
Metadata
Metadata
Assignees
Labels
No labels