2010-03-07 16:41:06 -05:00
|
|
|
# Ensure that we don't wrap Nodes that are "pure_statement" in a closure.
|
2010-02-11 02:41:24 -05:00
|
|
|
items: [1, 2, 3, "bacon", 4, 5]
|
|
|
|
|
|
|
|
for item in items
|
|
|
|
break if item is "bacon"
|
2010-01-16 12:10:31 -05:00
|
|
|
|
2010-01-26 10:52:05 -05:00
|
|
|
findit: (items) ->
|
2010-01-16 12:10:31 -05:00
|
|
|
for item in items
|
|
|
|
return item if item is "bacon"
|
|
|
|
|
2010-02-16 19:45:25 -05:00
|
|
|
ok findit(items) is "bacon"
|
2010-01-16 12:10:31 -05:00
|
|
|
|
|
|
|
|
|
|
|
# When when a closure wrapper is generated for expression conversion, make sure
|
|
|
|
# that references to "this" within the wrapper are safely converted as well.
|
2010-02-11 02:41:24 -05:00
|
|
|
obj: {
|
|
|
|
num: 5
|
|
|
|
func: ->
|
|
|
|
this.result: if false
|
|
|
|
10
|
|
|
|
else
|
|
|
|
"a"
|
|
|
|
"b"
|
|
|
|
this.num
|
|
|
|
}
|
|
|
|
|
2010-02-16 19:45:25 -05:00
|
|
|
ok obj.num is obj.func()
|
|
|
|
ok obj.num is obj.result
|