satyr / coco

Unfancy CoffeeScript
http://satyr.github.com/coco/
MIT License
498 stars 48 forks source link

Existential operator causes miscompilation of bang-call #229

Closed edef1c closed 6 years ago

edef1c commented 11 years ago
coco -bc> fn()?
fn() != null;
coco -bc> fn!?
typeof fn == 'undefined' || fn === null;
vendethiel commented 11 years ago

This is the inverse of the existential operator, !?. Its removal was suggested in #207.