-
Notifications
You must be signed in to change notification settings - Fork 155
Open
Labels
Description
So far (on master), slated for removal (and currently with compiler notices upon use):
- short function syntax -
f(x) = x- [currently has notice]
why: hacky implementation, duplicating functionaly
use --> to make curried functions +++concat op [currently has notice]
why: added ++ as concat op, which is shorter and betterwherestatement - relatively useless - just use local var assignment or a let statement [currently has notice]undefinedalias forvoid- added for CoffeeScript compatibility, but with coffee2ls that is not an issue [currently has notice]!?inexistence op [currently has notice]
discussion:
- choose one of
**or^for power op? - remove
importandimportAll? - remove
x is not yto meanx isnt y, have it meanx is !yinstead yes/no/on/offaliases - added for CoffeeScript compatibility, but now with coffee2ls, this is not an issue
More controversial:
- remove standalone use of
@ - remove standalone or hanging use of
::