removing the <- bind operator from CoffeeScript...

This commit is contained in:
Jeremy Ashkenas
2010-06-12 11:00:56 -04:00
parent 59e41f195b
commit c2d1ae06c5
11 changed files with 266 additions and 368 deletions

View File

@@ -1,22 +0,0 @@
helpers: require('../lib/helpers').helpers
f: (x,y,z) ->
x * y * z * ((@num or 4) + 5)
obj: {num: 5}
func: f <- obj, 1, 1
ok func(2) is 20
func: f <- {}, 1, 2
ok func(2) is 36
func: f <- obj
ok func(1, 2, 3) is 60
in_first_ten: helpers.include <- null, [0...10]
ok in_first_ten 3
ok in_first_ten 9
ok not in_first_ten -1
ok not in_first_ten 12