1
0
Fork 0
mirror of https://github.com/jashkenas/coffeescript.git synced 2022-11-09 12:23:24 -05:00
jashkenas--coffeescript/test/test_blocks.coffee

35 lines
418 B
CoffeeScript
Raw Normal View History

# Basic blocks.
2010-07-24 22:23:37 -07:00
results = [1, 2, 3].map (x) ->
x * x
ok results.join(' ') is '1 4 9'
# Chained blocks, with proper indentation levels:
2010-07-24 22:23:37 -07:00
results = []
2010-07-24 22:23:37 -07:00
counter = {
tick: (func) ->
results.push func()
this
}
counter
.tick ->
3
.tick ->
2
.tick ->
1
ok results.join(' ') is '3 2 1'
# Make incorrect indentation safe.
2010-07-24 22:23:37 -07:00
func = ->
obj = {
key: 10
}
obj.key - 5
ok func() is 5