tweaking existential compilation.

This commit is contained in:
Jeremy Ashkenas
2010-08-14 11:29:10 -04:00
parent 1eebbfe2bc
commit ead9b1041c
3 changed files with 12 additions and 27 deletions

View File

@@ -70,6 +70,11 @@ result = value?.toString().toLowerCase()
ok result is '10'
# Soaks inner values.
ident = (obj) -> obj
ok ident(non?.existent().method()) is undefined
# Soaks constructor invocations.
a = 0
class Foo