Merge branch 'master' of github.com:michaelficarra/coffee-script into refactorTests

This commit is contained in:
Michael Ficarra
2010-12-05 13:37:34 -05:00
12 changed files with 125 additions and 28 deletions

View File

@@ -123,3 +123,13 @@ try
failed = false
catch err
ok failed
# multiple generated references
(->
a = {b: []}
a.b[true] = -> this == a.b
c = 0
d = []
ok a.b[0<++c<2] d...
)()