This commit is contained in:
Danny Yoo 2011-04-14 11:37:26 -04:00
parent 75fd4a9005
commit a35190c07e

13
NOTES
View File

@ -310,4 +310,15 @@ into a single statement.
If lambdas don't escape, then we can make their closures empty by
simply explicitly passing in the free arguments.
simply explicitly passing in the free arguments.
There's no good reason why the IL has both AssignImmediateStatement
and AssignPrimOpStatement. The distinction is artificial because I'm
allowing the RHS of assignments to use arbitrary expressions, since my
runtime (JavaScript) supports it. I should consolidate these
structures; it may allow me to remove a few more instructions (like
setting ControlLabel to 'val).