2010-12-30 22:48:31 -05:00
|
|
|
|
# Compilation
|
|
|
|
|
# -----------
|
|
|
|
|
|
2017-09-15 09:58:18 -04:00
|
|
|
|
# Helper to assert that a string should fail compilation.
|
2010-12-30 22:48:31 -05:00
|
|
|
|
cantCompile = (code) ->
|
|
|
|
|
throws -> CoffeeScript.compile code
|
|
|
|
|
|
2017-09-15 09:58:18 -04:00
|
|
|
|
# Helper to pipe the CoffeeScript compiler’s output through a transpiler.
|
|
|
|
|
transpile = (method, code, options = {}) ->
|
|
|
|
|
# `method` should be 'compile' or 'eval' or 'run'
|
|
|
|
|
options.bare = yes
|
|
|
|
|
options.transpile =
|
|
|
|
|
# Target Internet Explorer 6, which supports no ES2015+ features.
|
|
|
|
|
presets: [['env', {targets: browsers: ['ie 6']}]]
|
|
|
|
|
CoffeeScript[method] code, options
|
|
|
|
|
|
2010-12-30 22:48:31 -05:00
|
|
|
|
|
2011-03-11 21:59:17 -05:00
|
|
|
|
test "ensure that carriage returns don't break compilation on Windows", ->
|
|
|
|
|
doesNotThrow -> CoffeeScript.compile 'one\r\ntwo', bare: on
|
2010-12-30 22:48:31 -05:00
|
|
|
|
|
2013-10-20 15:21:06 -04:00
|
|
|
|
test "#3089 - don't mutate passed in options to compile", ->
|
|
|
|
|
opts = {}
|
|
|
|
|
CoffeeScript.compile '1 + 1', opts
|
2016-11-08 02:40:01 -05:00
|
|
|
|
ok !opts.scope
|
2013-10-20 15:21:06 -04:00
|
|
|
|
|
2011-04-29 15:53:30 -04:00
|
|
|
|
test "--bare", ->
|
|
|
|
|
eq -1, CoffeeScript.compile('x = y', bare: on).indexOf 'function'
|
2011-03-11 21:59:17 -05:00
|
|
|
|
ok 'passed' is CoffeeScript.eval '"passed"', bare: on, filename: 'test'
|
2010-12-30 22:48:31 -05:00
|
|
|
|
|
2012-01-10 12:54:21 -05:00
|
|
|
|
test "header (#1778)", ->
|
|
|
|
|
header = "// Generated by CoffeeScript #{CoffeeScript.VERSION}\n"
|
|
|
|
|
eq 0, CoffeeScript.compile('x = y', header: on).indexOf header
|
|
|
|
|
|
2012-01-10 14:03:48 -05:00
|
|
|
|
test "header is disabled by default", ->
|
|
|
|
|
header = "// Generated by CoffeeScript #{CoffeeScript.VERSION}\n"
|
|
|
|
|
eq -1, CoffeeScript.compile('x = y').indexOf header
|
|
|
|
|
|
2011-03-11 21:59:17 -05:00
|
|
|
|
test "multiple generated references", ->
|
2010-12-30 22:48:31 -05:00
|
|
|
|
a = {b: []}
|
|
|
|
|
a.b[true] = -> this == a.b
|
|
|
|
|
c = 0
|
|
|
|
|
d = []
|
|
|
|
|
ok a.b[0<++c<2] d...
|
|
|
|
|
|
2011-03-11 21:59:17 -05:00
|
|
|
|
test "splat on a line by itself is invalid", ->
|
|
|
|
|
cantCompile "x 'a'\n...\n"
|
|
|
|
|
|
|
|
|
|
test "Issue 750", ->
|
2010-12-30 22:48:31 -05:00
|
|
|
|
|
2011-03-11 21:59:17 -05:00
|
|
|
|
cantCompile 'f(->'
|
2010-12-30 22:48:31 -05:00
|
|
|
|
|
2011-03-11 21:59:17 -05:00
|
|
|
|
cantCompile 'a = (break)'
|
2010-12-30 22:48:31 -05:00
|
|
|
|
|
2011-03-11 21:59:17 -05:00
|
|
|
|
cantCompile 'a = (return 5 for item in list)'
|
2010-12-30 22:48:31 -05:00
|
|
|
|
|
2011-03-11 21:59:17 -05:00
|
|
|
|
cantCompile 'a = (return 5 while condition)'
|
2010-12-30 22:48:31 -05:00
|
|
|
|
|
2011-03-11 21:59:17 -05:00
|
|
|
|
cantCompile 'a = for x in y\n return 5'
|
2010-12-30 22:48:31 -05:00
|
|
|
|
|
2011-03-11 21:59:17 -05:00
|
|
|
|
test "Issue #986: Unicode identifiers", ->
|
|
|
|
|
λ = 5
|
|
|
|
|
eq λ, 5
|
2010-12-30 22:48:31 -05:00
|
|
|
|
|
2015-01-06 15:32:14 -05:00
|
|
|
|
test "#2516: Unicode spaces should not be part of identifiers", ->
|
|
|
|
|
a = (x) -> x * 2
|
|
|
|
|
b = 3
|
|
|
|
|
eq 6, a b # U+00A0 NO-BREAK SPACE
|
|
|
|
|
eq 6, a b # U+1680 OGHAM SPACE MARK
|
|
|
|
|
eq 6, a b # U+2000 EN QUAD
|
|
|
|
|
eq 6, a b # U+2001 EM QUAD
|
|
|
|
|
eq 6, a b # U+2002 EN SPACE
|
|
|
|
|
eq 6, a b # U+2003 EM SPACE
|
|
|
|
|
eq 6, a b # U+2004 THREE-PER-EM SPACE
|
|
|
|
|
eq 6, a b # U+2005 FOUR-PER-EM SPACE
|
|
|
|
|
eq 6, a b # U+2006 SIX-PER-EM SPACE
|
|
|
|
|
eq 6, a b # U+2007 FIGURE SPACE
|
|
|
|
|
eq 6, a b # U+2008 PUNCTUATION SPACE
|
|
|
|
|
eq 6, a b # U+2009 THIN SPACE
|
|
|
|
|
eq 6, a b # U+200A HAIR SPACE
|
|
|
|
|
eq 6, a b # U+202F NARROW NO-BREAK SPACE
|
|
|
|
|
eq 6, a b # U+205F MEDIUM MATHEMATICAL SPACE
|
|
|
|
|
eq 6, a b # U+3000 IDEOGRAPHIC SPACE
|
|
|
|
|
|
|
|
|
|
# #3560: Non-breaking space (U+00A0) (before `'c'`)
|
|
|
|
|
eq 5, {c: 5}[ 'c' ]
|
|
|
|
|
|
|
|
|
|
# A line where every space in non-breaking
|
2016-09-20 17:06:44 -04:00
|
|
|
|
eq 1 + 1, 2
|
2015-01-06 15:32:14 -05:00
|
|
|
|
|
2010-12-30 22:48:31 -05:00
|
|
|
|
test "don't accidentally stringify keywords", ->
|
|
|
|
|
ok (-> this == 'this')() is false
|
2011-01-10 23:19:31 -05:00
|
|
|
|
|
2015-02-23 18:39:05 -05:00
|
|
|
|
test "#1026: no if/else/else allowed", ->
|
2011-01-10 23:19:31 -05:00
|
|
|
|
cantCompile '''
|
|
|
|
|
if a
|
|
|
|
|
b
|
|
|
|
|
else
|
|
|
|
|
c
|
|
|
|
|
else
|
|
|
|
|
d
|
|
|
|
|
'''
|
2011-01-18 23:10:09 -05:00
|
|
|
|
|
2015-02-23 18:39:05 -05:00
|
|
|
|
test "#1050: no closing asterisk comments from within block comments", ->
|
2011-03-11 22:44:18 -05:00
|
|
|
|
cantCompile "### */ ###"
|
2011-04-27 21:36:29 -04:00
|
|
|
|
|
2013-11-27 07:58:14 -05:00
|
|
|
|
test "#1273: escaping quotes at the end of heredocs", ->
|
|
|
|
|
cantCompile '"""\\"""' # """\"""
|
2013-11-28 10:46:00 -05:00
|
|
|
|
cantCompile '"""\\\\\\"""' # """\\\"""
|
2013-11-27 07:58:14 -05:00
|
|
|
|
|
2011-04-27 21:36:29 -04:00
|
|
|
|
test "#1106: __proto__ compilation", ->
|
|
|
|
|
object = eq
|
2011-04-27 21:57:22 -04:00
|
|
|
|
@["__proto__"] = true
|
2011-04-27 21:36:29 -04:00
|
|
|
|
ok __proto__
|
2011-11-14 11:18:45 -05:00
|
|
|
|
|
|
|
|
|
test "reference named hasOwnProperty", ->
|
|
|
|
|
CoffeeScript.compile 'hasOwnProperty = 0; a = 1'
|
2013-03-05 03:10:56 -05:00
|
|
|
|
|
2013-03-05 03:28:29 -05:00
|
|
|
|
test "#1055: invalid keys in real (but not work-product) objects", ->
|
2013-03-05 03:10:56 -05:00
|
|
|
|
cantCompile "@key: value"
|
2013-03-05 03:28:29 -05:00
|
|
|
|
|
|
|
|
|
test "#1066: interpolated strings are not implicit functions", ->
|
|
|
|
|
cantCompile '"int#{er}polated" arg'
|
2013-03-25 13:56:24 -04:00
|
|
|
|
|
|
|
|
|
test "#2846: while with empty body", ->
|
2013-04-21 06:27:30 -04:00
|
|
|
|
CoffeeScript.compile 'while 1 then', {sourceMap: true}
|
|
|
|
|
|
|
|
|
|
test "#2944: implicit call with a regex argument", ->
|
2013-05-25 18:29:26 -04:00
|
|
|
|
CoffeeScript.compile 'o[key] /regex/'
|
|
|
|
|
|
|
|
|
|
test "#3001: `own` shouldn't be allowed in a `for`-`in` loop", ->
|
2013-07-30 11:24:46 -04:00
|
|
|
|
cantCompile "a for own b in c"
|
|
|
|
|
|
|
|
|
|
test "#2994: single-line `if` requires `then`", ->
|
|
|
|
|
cantCompile "if b else x"
|
2017-09-15 09:58:18 -04:00
|
|
|
|
|
|
|
|
|
test "transpile option, for Node API CoffeeScript.compile", ->
|
|
|
|
|
return if global.testingBrowser
|
|
|
|
|
ok transpile('compile', "import fs from 'fs'").includes 'require'
|
|
|
|
|
|
|
|
|
|
test "transpile option, for Node API CoffeeScript.eval", ->
|
|
|
|
|
return if global.testingBrowser
|
|
|
|
|
ok transpile 'eval', "import path from 'path'; path.sep in ['/', '\\\\']"
|
|
|
|
|
|
|
|
|
|
test "transpile option, for Node API CoffeeScript.run", ->
|
|
|
|
|
return if global.testingBrowser
|
|
|
|
|
doesNotThrow -> transpile 'run', "import fs from 'fs'"
|
|
|
|
|
|
|
|
|
|
test "transpile option has merged source maps", ->
|
|
|
|
|
return if global.testingBrowser
|
|
|
|
|
untranspiledOutput = CoffeeScript.compile "import path from 'path'\nconsole.log path.sep", sourceMap: yes
|
|
|
|
|
transpiledOutput = transpile 'compile', "import path from 'path'\nconsole.log path.sep", sourceMap: yes
|
|
|
|
|
untranspiledOutput.v3SourceMap = JSON.parse untranspiledOutput.v3SourceMap
|
|
|
|
|
transpiledOutput.v3SourceMap = JSON.parse transpiledOutput.v3SourceMap
|
|
|
|
|
ok untranspiledOutput.v3SourceMap.mappings isnt transpiledOutput.v3SourceMap.mappings
|
|
|
|
|
# Babel adds `'use strict';` to the top of files with the modules transform.
|
|
|
|
|
eq transpiledOutput.js.indexOf('use strict'), 1
|
|
|
|
|
# The `'use strict';` followed by two newlines results in the first two lines
|
|
|
|
|
# of the source map mappings being two blank/skipped lines.
|
|
|
|
|
eq transpiledOutput.v3SourceMap.mappings.indexOf(';;'), 0
|
|
|
|
|
# The number of lines in the transpiled code should match the number of lines
|
|
|
|
|
# in the source map.
|
|
|
|
|
eq transpiledOutput.js.split('\n').length, transpiledOutput.v3SourceMap.mappings.split(';').length
|
|
|
|
|
|
|
|
|
|
test "using transpile from the Node API requires an object", ->
|
|
|
|
|
try
|
|
|
|
|
CoffeeScript.compile '', transpile: yes
|
|
|
|
|
catch exception
|
|
|
|
|
eq exception.message, 'The transpile option must be given an object with options to pass to Babel'
|
2017-10-04 20:49:59 -04:00
|
|
|
|
|
|
|
|
|
test "transpile option applies to imported .coffee files", ->
|
|
|
|
|
return if global.testingBrowser
|
|
|
|
|
doesNotThrow -> transpile 'run', "import { getSep } from './test/importing/transpile_import'\ngetSep()"
|
2018-01-31 00:09:50 -05:00
|
|
|
|
|
|
|
|
|
test "#3306: trailing comma in a function call in the last line", ->
|
|
|
|
|
eqJS '''
|
|
|
|
|
foo bar,
|
|
|
|
|
''', '''
|
|
|
|
|
foo(bar);
|
|
|
|
|
'''
|