jashkenas--coffeescript/test/test_arguments.coffee

32 lines
405 B
CoffeeScript
Raw Normal View History

2010-07-25 05:23:37 +00:00
area = (x, y, x1, y1) ->
(x - x1) * (x - y1)
2010-07-25 05:23:37 +00:00
x = y = 10
x1 = y1 = 20
ok area(x, y, x1, y1) is 100
ok(area(x, y,
x1, y1) is 100)
ok(area(
x
y
x1
y1
) is 100)
2010-07-25 05:23:37 +00:00
sumOfArgs = ->
sum = 0
sum += val for val in arguments
sum
2010-07-28 05:54:36 +00:00
ok sumOfArgs(1, 2, 3, 4, 5) is 15
((@arg) ->).call context = {}, 1
ok context.arg is 1
((splat..., @arg) ->).call context, 1, 2, 3
ok context.arg is 3