1
0
Fork 0
mirror of synced 2024-07-01 13:01:09 -04:00
ultimate-vim/bundle/vim-coffee-script/test/test-reserved.coffee
2014-05-09 21:28:39 +02:00

28 lines
310 B
CoffeeScript

# Should be an error
function = 42
var = 42
# Shouldn't be an error
abc.with = 42
function: 42
var: 42
# Keywords shouldn't be highlighted
abc.function
abc.do
abc.break
abc.true
abc::function
abc::do
abc::break
abc::true
abc:: function
abc. function
# Numbers should be highlighted
def.42
def .42
def::42