mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
11 lines
308 B
CoffeeScript
11 lines
308 B
CoffeeScript
OPERATOR = /// ^ (
|
|
?: [-=]> # function
|
|
| [-+*/%<>&|^!?=]= # compound assign / compare
|
|
| >>>=? # zero-fill right shift
|
|
| ([-+:])\1 # doubles
|
|
| ([&|<>])\2=? # logic / shift
|
|
| \?\. # soak access
|
|
| \.{2,3} # range or splat
|
|
) ///
|
|
|
|
|