You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
310 B
CoffeeScript
28 lines
310 B
CoffeeScript
11 years ago
|
# 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
|