satyr/coco

Existential operator causes miscompilation of bang-call

Closed this issue · 1 comments

coco -bc> fn()?
fn() != null;
coco -bc> fn!?
typeof fn == 'undefined' || fn === null;

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