jashkenas--coffeescript/test/test_chaining.coffee

48 lines
643 B
CoffeeScript
Raw Normal View History

# Basic chained function calls.
identityWrap: (x) ->
-> x
result: identityWrap(identityWrap(true))()()
ok result
# Chained accesses split on period/newline, backwards and forwards.
str: 'god'
result: str.
split('').
reverse().
reverse().
reverse()
ok result.join('') is 'dog'
result: str
.split('')
.reverse()
.reverse()
.reverse()
ok result.join('') is 'dog'
# Newline suppression for operators.
six:
1 +
2 +
3
2010-04-18 04:41:47 +00:00
ok six is 6
# Ensure that indented array literals don't trigger whitespace rewriting.
2010-04-18 04:41:47 +00:00
func: () ->
ok arguments.length is 1
func(
[[[[[],
2010-04-18 04:41:47 +00:00
[]],
[[]]]],
[]])