mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
159 lines
2.6 KiB
CoffeeScript
159 lines
2.6 KiB
CoffeeScript
x: 1
|
|
y: {}
|
|
y.x: -> 3
|
|
|
|
ok x is 1
|
|
ok typeof(y.x) is 'function'
|
|
ok y.x instanceof Function
|
|
ok y.x() is 3
|
|
ok y.x.name is 'x'
|
|
|
|
|
|
# The empty function should not cause a syntax error.
|
|
->
|
|
() ->
|
|
|
|
|
|
# Multiple nested function declarations mixed with implicit calls should not
|
|
# cause a syntax error.
|
|
(one) -> (two) -> three four, (five) -> six seven, eight, (nine) ->
|
|
|
|
|
|
obj: {
|
|
name: "Fred"
|
|
|
|
bound: ->
|
|
(=> ok(this.name is "Fred"))()
|
|
|
|
unbound: ->
|
|
(-> ok(!this.name?))()
|
|
}
|
|
|
|
obj.unbound()
|
|
obj.bound()
|
|
|
|
|
|
# Python decorator style wrapper that memoizes any function
|
|
memoize: (fn) ->
|
|
cache: {}
|
|
self: this
|
|
(args...) ->
|
|
key: args.toString()
|
|
return cache[key] if cache[key]
|
|
cache[key] = fn.apply(self, args)
|
|
|
|
Math: {
|
|
Add: (a, b) -> a + b
|
|
AnonymousAdd: ((a, b) -> a + b)
|
|
FastAdd: memoize (a, b) -> a + b
|
|
}
|
|
|
|
ok Math.Add(5, 5) is 10
|
|
ok Math.AnonymousAdd(10, 10) is 20
|
|
ok Math.FastAdd(20, 20) is 40
|
|
|
|
|
|
# Parens are optional on simple function calls.
|
|
ok 100 > 1 if 1 > 0
|
|
ok true unless false
|
|
ok true for i in [1..3]
|
|
|
|
ok_func: (f) -> ok(f())
|
|
ok_func -> true
|
|
|
|
# Optional parens can be used in a nested fashion.
|
|
call: (func) -> func()
|
|
|
|
result: call ->
|
|
inner: call ->
|
|
Math.Add(5, 5)
|
|
|
|
ok result is 10
|
|
|
|
|
|
# More fun with optional parens.
|
|
fn: (arg) -> arg
|
|
|
|
ok fn(fn {prop: 101}).prop is 101
|
|
|
|
# Function calls sans-spacing.
|
|
ok((fn(x) ->
|
|
3
|
|
)() is 3)
|
|
|
|
|
|
# Multi-blocks with optional parens.
|
|
result: fn( ->
|
|
fn ->
|
|
"Wrapped"
|
|
)
|
|
|
|
ok result()() is 'Wrapped'
|
|
|
|
|
|
# And even with strange things like this:
|
|
funcs: [((x) -> x), ((x) -> x * x)]
|
|
result: funcs[1] 5
|
|
|
|
ok result is 25
|
|
|
|
result: ("hello".slice) 3
|
|
|
|
ok result is 'lo'
|
|
|
|
|
|
# And with multiple single-line functions on the same line.
|
|
func: (x) -> (x) -> (x) -> x
|
|
ok func(1)(2)(3) is 3
|
|
|
|
|
|
# Ensure that functions with the same name don't clash with helper functions.
|
|
del: -> 5
|
|
ok del() is 5
|
|
|
|
# Ensure that functions can have a trailing comma in their argument list
|
|
mult: (x, mids..., y) ->
|
|
x: * n for n in mids
|
|
x: * y
|
|
|
|
ok mult(1, 2,) is 2
|
|
ok mult(1, 2, 3,) is 6
|
|
ok mult(10,[1..6]...,) is 7200
|
|
|
|
|
|
# Test for inline functions with parentheses and implicit calls.
|
|
combine: (func, num) -> func() * num
|
|
result: combine (-> 1 + 2), 3
|
|
|
|
ok result is 9
|
|
|
|
|
|
# Test for calls/parens/multiline-chains.
|
|
f: (x) -> x
|
|
result: (f 1).toString()
|
|
.length
|
|
|
|
ok result is 1
|
|
|
|
|
|
# Test implicit calls in functions in parens:
|
|
result: ((val) ->
|
|
[].push val
|
|
val
|
|
)(10)
|
|
|
|
ok result is 10
|
|
|
|
|
|
# More paren compilation tests:
|
|
reverse: (obj) -> obj.reverse()
|
|
ok reverse([1, 2].concat 3).join(' ') is '3 2 1'
|
|
|
|
# Passing multiple functions without paren-wrapping is legal, and should compile.
|
|
sum: (one, two) -> one() + two()
|
|
result: sum ->
|
|
7 + 9
|
|
, ->
|
|
1 + 3
|
|
ok result is 20
|
|
|