jashkenas--coffeescript/test/test_assignment.coffee

29 lines
438 B
CoffeeScript
Raw Normal View History

# Can assign the result of a try/catch block.
2010-01-17 15:40:59 +00:00
result: try
nonexistent * missing
catch error
true
result2: try nonexistent * missing catch error then true
ok result is true and result2 is true
2010-01-17 15:40:59 +00:00
# Can assign a conditional statement.
getX: -> 10
2010-01-17 15:40:59 +00:00
if x: getX() then 100
2010-01-17 15:40:59 +00:00
ok x is 10
2010-01-17 15:40:59 +00:00
x: if getX() then 100
2010-01-17 15:40:59 +00:00
ok x is 100
# This-assignment.
tester: ->
@example: -> 'example function'
this
ok tester().example() is 'example function'