2010-04-03 10:39:32 -04:00
|
|
|
# Can assign the result of a try/catch block.
|
2010-01-17 10:40:59 -05:00
|
|
|
result: try
|
|
|
|
nonexistent * missing
|
|
|
|
catch error
|
|
|
|
true
|
|
|
|
|
|
|
|
result2: try nonexistent * missing catch error then true
|
|
|
|
|
2010-04-03 10:39:32 -04:00
|
|
|
ok result is true and result2 is true
|
2010-01-17 10:40:59 -05:00
|
|
|
|
|
|
|
|
2010-04-03 10:39:32 -04:00
|
|
|
# Can assign a conditional statement.
|
2010-01-26 10:52:05 -05:00
|
|
|
get_x: -> 10
|
2010-01-17 10:40:59 -05:00
|
|
|
|
|
|
|
if x: get_x() then 100
|
|
|
|
|
2010-04-03 10:39:32 -04:00
|
|
|
ok x is 10
|
2010-01-17 10:40:59 -05:00
|
|
|
|
|
|
|
x: if get_x() then 100
|
|
|
|
|
2010-04-03 10:39:32 -04:00
|
|
|
ok x is 100
|
2010-02-19 07:51:52 -05:00
|
|
|
|
2010-02-19 18:27:50 -05:00
|
|
|
|
2010-04-03 10:39:32 -04:00
|
|
|
# This-assignment.
|
2010-02-19 07:51:52 -05:00
|
|
|
tester: ->
|
|
|
|
@example: -> puts 'example function'
|
|
|
|
this
|
|
|
|
|
|
|
|
ok tester().example.name is 'example'
|