Files
coffeescript/test
Simon Lydell 996a171a4e Fix #3778: Make for loops more consistent
The following two lines might seem equivalent:

    for n in [1, 2, 3] by  a then a = 4; n
    for n in [1, 2, 3] by +a then a = 4; n

But they used not to be, because `+a` was cached into a `ref`, while the plain
`a` wasn’t. Now even simple identifiers are cached, making the two lines
equivalent as expected.
2015-02-03 19:05:07 +01:00
..
2015-01-15 19:44:14 +01:00
2011-04-23 13:35:15 -04:00
2015-01-05 15:40:04 -05:00
2014-08-26 20:41:32 -05:00
2011-06-02 01:49:28 -04:00
2015-01-15 19:44:14 +01:00
2014-08-26 20:41:32 -05:00
2013-03-21 09:04:23 +08:00