2012-12-24 08:34:16 -05:00
|
|
|
testScript = '''
|
|
|
|
if true
|
|
|
|
x = 6
|
|
|
|
console.log "A console #{x + 7} log"
|
|
|
|
|
|
|
|
foo = "bar"
|
|
|
|
z = /// ^ (a#{foo}) ///
|
|
|
|
|
|
|
|
x = () ->
|
|
|
|
try
|
|
|
|
console.log "foo"
|
|
|
|
catch err
|
|
|
|
# Rewriter will generate explicit indentation here.
|
|
|
|
|
|
|
|
return null
|
|
|
|
'''
|
|
|
|
|
|
|
|
test "Verify location of generated tokens", ->
|
2013-01-14 17:11:07 -05:00
|
|
|
tokens = CoffeeScript.tokens "a = 79"
|
2012-12-24 08:34:16 -05:00
|
|
|
|
|
|
|
eq tokens.length, 4
|
2013-01-14 17:11:07 -05:00
|
|
|
|
|
|
|
aToken = tokens[0]
|
|
|
|
eq aToken[2].first_line, 0
|
|
|
|
eq aToken[2].first_column, 0
|
|
|
|
eq aToken[2].last_line, 0
|
|
|
|
eq aToken[2].last_column, 0
|
|
|
|
|
|
|
|
equalsToken = tokens[1]
|
|
|
|
eq equalsToken[2].first_line, 0
|
|
|
|
eq equalsToken[2].first_column, 2
|
|
|
|
eq equalsToken[2].last_line, 0
|
|
|
|
eq equalsToken[2].last_column, 2
|
|
|
|
|
|
|
|
numberToken = tokens[2]
|
|
|
|
eq numberToken[2].first_line, 0
|
|
|
|
eq numberToken[2].first_column, 4
|
|
|
|
eq numberToken[2].last_line, 0
|
|
|
|
eq numberToken[2].last_column, 5
|
|
|
|
|
2012-12-24 08:34:16 -05:00
|
|
|
|
|
|
|
test "Verify all tokens get a location", ->
|
|
|
|
doesNotThrow ->
|
|
|
|
tokens = CoffeeScript.tokens testScript
|
|
|
|
for token in tokens
|
2013-01-14 15:20:47 -05:00
|
|
|
ok !!token[2]
|