1
0
Fork 0
mirror of synced 2024-05-26 03:51:13 -04:00
ultimate-vim/sources_non_forked/vim-coffee-script/test/test-reserved.coffee
2012-08-16 23:41:25 -04: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