2016-11-20 20:05:19 -05:00
|
|
|
|
fs = require 'fs'
|
2017-05-14 00:18:05 -04:00
|
|
|
|
os = require 'os'
|
2016-11-20 20:05:19 -05:00
|
|
|
|
path = require 'path'
|
|
|
|
|
_ = require 'underscore'
|
|
|
|
|
{ spawn, exec, execSync } = require 'child_process'
|
2017-02-12 20:00:05 -05:00
|
|
|
|
CoffeeScript = require './lib/coffeescript'
|
|
|
|
|
helpers = require './lib/coffeescript/helpers'
|
2010-02-16 01:04:48 -05:00
|
|
|
|
|
2010-06-15 21:33:53 -04:00
|
|
|
|
# ANSI Terminal Colors.
|
[CS2] Comments (#4572)
* Make `addLocationDataFn` more DRY
* Style fixes
* Provide access to full parser inside our custom function running in parser.js; rename the function to lay the groundwork for adding data aside from location data
* Fix style.
* Fix style.
* Label test comments
* Update grammar to remove comment tokens; update DSL to call new helper function that preserves comments through parsing
* New implementation of compiling block comments: the lexer pulls them out of the token stream, attaching them as a property to a token; the rewriter moves the attachment around so it lives on a token that is destined to make it through to compilation (and in a good placement); and the nodes render the block comment. All tests but one pass (commented out).
* If a comment follows a class declaration, move the comment inside the class body
* Style
* Improve indentation of multiline comments
* Fix indentation for block comments, at least in the cases covered by the one failing test
* Don’t reverse the order of unshifted comments
* Simplify rewriter’s handling of comments, generalizing the special case
* Expand the list of tokens we need to avoid for passing comments through the parser; get some literal tokens to have nodes created for them so that the comments pass through
* Improve comments; fix multiline flag
* Prepare HereComments for processing line comments
* Line comments, first draft: the tests pass, but the line comments aren’t indented and sometimes trail previous lines when they shouldn’t; updated compiler output in following commit
* Updated compiler, now with line comments
* `process` doesn’t exist in the browser, so we should check for its existence first
* Update parser output
* Test that proves #4290 is fixed
* Indent line comments, first pass
* Compiled output with indented line comments
* Comments that start a new line shouldn’t trail; don’t skip comments attached to generated tokens; stop looking for indentation once we hit a newline
* Revised output
* Cleanup
* Split “multiline” line comment tokens, shifting them forward or back as appropriate
* Fix comments in module specifiers
* Abstract attaching comments to a node
* Line comments in interpolated strings
* Line comments can’t be multiline anymore
* Improve handling of blank lines and indentation of following comments that start a new line (i.e. don’t trail)
* Make comments compilation more object-oriented
* Remove lots of dead code that we don’t need anymore because a comment is never a node, only a fragment
* Improve eqJS helper
* Fix #4290 definitively, with improved output for arrays with interspersed block comments
* Add support for line comments output interspersed within arrays
* Fix mistake, don’t lose the variable we’re working on
* Remove redundant replacements
* Check for indentation only from the start of the string
* Indentations in generated JS are always multiples of two spaces (never tabs) so just look for 2+ spaces
* Update package versions; run Babel twice, once for each preset, temporarily until a Babili bug is fixed that prevents it from running with the env preset
* Don’t rely on `fragment.type`, which can break when the compiler is minified
* Updated generated docs and browser compiler
* Output block comments after function arguments
* Comments appear above scope `var` declarations; better tracking of generated `JS` tokens created only to shepherd comments through to the output
* Create new FuncGlyph node, to hold comments we want to output near the function parameters
* Block comments between `)` and `->`/`=>` get output between `)` and `{`.
* Fix indentation of comments that are the first line inside a bare mode block
* Updated output
* Full Flow example
* Updated browser compiler
* Abstract and organize comment fragment generation code; store more properties on the comment fragment objects; make `throw` behave like `return`
* Abstract token insertion code
* Add missing locationData to STRING_START token, giving it the locationData of the overall StringWithInterpolations token so that comments attached to STRING_START end up on the StringWithInterpolations node
* Allow `SUPER` tokens to carry comments
* Rescue comments from `Existence` nodes and `If` nodes’ conditions
* Rescue comments after `\` line continuation tokens
* Updated compiled output
* Updated browser compiler
* Output block comments in the same `compileFragments` method as line comments, except for inline block comments
* Comments before splice
* Updated browser compiler
* Track compiledComments as a property of Base, to ensure that it’s not a global variable
* Docs: split up the Usage section
* Docs for type annotations via Flow; updated docs output
* Update regular comments documentation
* Updated browser compiler
* Comments before soak
* Comments before static methods, and probably before `@variable =` (this) assignments generally
* Comments before ‘if exists?’, refactor comment before ‘if this.var’ to be more precise, improve helper methods
* Comments before a method that contains ‘super()’ should output above the method property, not above the ‘super.method()’ call
* Fix missing comments before `if not` (i.e. before a UNARY token)
* Fix comments before ‘for’; add test for comment before assignment if (fixed in earlier commit)
* Comments within heregexes
* Updated browser compiler
* Update description to reflect what’s now happening in compileCommentFragments
* Preserve blank lines between line comments; output “whitespace-only” line comments as blank lines, rather than `//` following by whitespace
* Better future-proof comments tests
* Comments before object destructuring; abstract method for setting comments aside before compilation
* Handle more cases of comments before or after `for` loop declaration lines
* Fix indentation of comments preceding `for` loops
* Fix comment before splat function parameter
* Catch another RegexWithInterpolations comment edge case
* Updated browser compiler
* Change heregex example to one that’s more readable; update output
* Remove a few last references to the defunct HERECOMMENT token
* Abstract location hash creation into a function
* Improved clarity per code review notes
* Updated browser compiler
2017-08-02 22:34:34 -04:00
|
|
|
|
bold = red = green = yellow = reset = ''
|
2013-02-01 18:50:32 -05:00
|
|
|
|
unless process.env.NODE_DISABLE_COLORS
|
[CS2] Comments (#4572)
* Make `addLocationDataFn` more DRY
* Style fixes
* Provide access to full parser inside our custom function running in parser.js; rename the function to lay the groundwork for adding data aside from location data
* Fix style.
* Fix style.
* Label test comments
* Update grammar to remove comment tokens; update DSL to call new helper function that preserves comments through parsing
* New implementation of compiling block comments: the lexer pulls them out of the token stream, attaching them as a property to a token; the rewriter moves the attachment around so it lives on a token that is destined to make it through to compilation (and in a good placement); and the nodes render the block comment. All tests but one pass (commented out).
* If a comment follows a class declaration, move the comment inside the class body
* Style
* Improve indentation of multiline comments
* Fix indentation for block comments, at least in the cases covered by the one failing test
* Don’t reverse the order of unshifted comments
* Simplify rewriter’s handling of comments, generalizing the special case
* Expand the list of tokens we need to avoid for passing comments through the parser; get some literal tokens to have nodes created for them so that the comments pass through
* Improve comments; fix multiline flag
* Prepare HereComments for processing line comments
* Line comments, first draft: the tests pass, but the line comments aren’t indented and sometimes trail previous lines when they shouldn’t; updated compiler output in following commit
* Updated compiler, now with line comments
* `process` doesn’t exist in the browser, so we should check for its existence first
* Update parser output
* Test that proves #4290 is fixed
* Indent line comments, first pass
* Compiled output with indented line comments
* Comments that start a new line shouldn’t trail; don’t skip comments attached to generated tokens; stop looking for indentation once we hit a newline
* Revised output
* Cleanup
* Split “multiline” line comment tokens, shifting them forward or back as appropriate
* Fix comments in module specifiers
* Abstract attaching comments to a node
* Line comments in interpolated strings
* Line comments can’t be multiline anymore
* Improve handling of blank lines and indentation of following comments that start a new line (i.e. don’t trail)
* Make comments compilation more object-oriented
* Remove lots of dead code that we don’t need anymore because a comment is never a node, only a fragment
* Improve eqJS helper
* Fix #4290 definitively, with improved output for arrays with interspersed block comments
* Add support for line comments output interspersed within arrays
* Fix mistake, don’t lose the variable we’re working on
* Remove redundant replacements
* Check for indentation only from the start of the string
* Indentations in generated JS are always multiples of two spaces (never tabs) so just look for 2+ spaces
* Update package versions; run Babel twice, once for each preset, temporarily until a Babili bug is fixed that prevents it from running with the env preset
* Don’t rely on `fragment.type`, which can break when the compiler is minified
* Updated generated docs and browser compiler
* Output block comments after function arguments
* Comments appear above scope `var` declarations; better tracking of generated `JS` tokens created only to shepherd comments through to the output
* Create new FuncGlyph node, to hold comments we want to output near the function parameters
* Block comments between `)` and `->`/`=>` get output between `)` and `{`.
* Fix indentation of comments that are the first line inside a bare mode block
* Updated output
* Full Flow example
* Updated browser compiler
* Abstract and organize comment fragment generation code; store more properties on the comment fragment objects; make `throw` behave like `return`
* Abstract token insertion code
* Add missing locationData to STRING_START token, giving it the locationData of the overall StringWithInterpolations token so that comments attached to STRING_START end up on the StringWithInterpolations node
* Allow `SUPER` tokens to carry comments
* Rescue comments from `Existence` nodes and `If` nodes’ conditions
* Rescue comments after `\` line continuation tokens
* Updated compiled output
* Updated browser compiler
* Output block comments in the same `compileFragments` method as line comments, except for inline block comments
* Comments before splice
* Updated browser compiler
* Track compiledComments as a property of Base, to ensure that it’s not a global variable
* Docs: split up the Usage section
* Docs for type annotations via Flow; updated docs output
* Update regular comments documentation
* Updated browser compiler
* Comments before soak
* Comments before static methods, and probably before `@variable =` (this) assignments generally
* Comments before ‘if exists?’, refactor comment before ‘if this.var’ to be more precise, improve helper methods
* Comments before a method that contains ‘super()’ should output above the method property, not above the ‘super.method()’ call
* Fix missing comments before `if not` (i.e. before a UNARY token)
* Fix comments before ‘for’; add test for comment before assignment if (fixed in earlier commit)
* Comments within heregexes
* Updated browser compiler
* Update description to reflect what’s now happening in compileCommentFragments
* Preserve blank lines between line comments; output “whitespace-only” line comments as blank lines, rather than `//` following by whitespace
* Better future-proof comments tests
* Comments before object destructuring; abstract method for setting comments aside before compilation
* Handle more cases of comments before or after `for` loop declaration lines
* Fix indentation of comments preceding `for` loops
* Fix comment before splat function parameter
* Catch another RegexWithInterpolations comment edge case
* Updated browser compiler
* Change heregex example to one that’s more readable; update output
* Remove a few last references to the defunct HERECOMMENT token
* Abstract location hash creation into a function
* Improved clarity per code review notes
* Updated browser compiler
2017-08-02 22:34:34 -04:00
|
|
|
|
bold = '\x1B[0;1m'
|
|
|
|
|
red = '\x1B[0;31m'
|
|
|
|
|
green = '\x1B[0;32m'
|
|
|
|
|
yellow = '\x1B[0;33m'
|
|
|
|
|
reset = '\x1B[0m'
|
2010-06-15 21:33:53 -04:00
|
|
|
|
|
2010-11-10 23:06:26 -05:00
|
|
|
|
# Built file header.
|
|
|
|
|
header = """
|
|
|
|
|
/**
|
|
|
|
|
* CoffeeScript Compiler v#{CoffeeScript.VERSION}
|
2018-05-22 01:14:34 -04:00
|
|
|
|
* https://coffeescript.org
|
2010-11-10 23:06:26 -05:00
|
|
|
|
*
|
2019-04-07 19:09:44 -04:00
|
|
|
|
* Copyright 2011-#{new Date().getFullYear()}, Jeremy Ashkenas
|
2010-11-10 23:06:26 -05:00
|
|
|
|
* Released under the MIT License
|
|
|
|
|
*/
|
|
|
|
|
"""
|
|
|
|
|
|
2017-02-18 02:47:02 -05:00
|
|
|
|
# Used in folder names like `docs/v1`.
|
2016-12-10 21:53:58 -05:00
|
|
|
|
majorVersion = parseInt CoffeeScript.VERSION.split('.')[0], 10
|
2016-11-16 00:16:13 -05:00
|
|
|
|
|
2010-02-16 01:04:48 -05:00
|
|
|
|
|
2010-06-15 21:33:53 -04:00
|
|
|
|
# Log a message with a color.
|
2010-07-25 01:23:37 -04:00
|
|
|
|
log = (message, color, explanation) ->
|
2010-10-24 12:48:42 -04:00
|
|
|
|
console.log color + message + reset + ' ' + (explanation or '')
|
2010-06-15 21:33:53 -04:00
|
|
|
|
|
2013-01-13 17:59:05 -05:00
|
|
|
|
|
2017-02-18 02:47:02 -05:00
|
|
|
|
spawnNodeProcess = (args, output = 'stderr', callback) ->
|
|
|
|
|
relayOutput = (buffer) -> console.log buffer.toString()
|
|
|
|
|
proc = spawn 'node', args
|
|
|
|
|
proc.stdout.on 'data', relayOutput if output is 'both' or output is 'stdout'
|
|
|
|
|
proc.stderr.on 'data', relayOutput if output is 'both' or output is 'stderr'
|
|
|
|
|
proc.on 'exit', (status) -> callback(status) if typeof callback is 'function'
|
2013-01-13 17:59:05 -05:00
|
|
|
|
|
2017-02-18 02:47:02 -05:00
|
|
|
|
# Run a CoffeeScript through our node/coffee interpreter.
|
|
|
|
|
run = (args, callback) ->
|
|
|
|
|
spawnNodeProcess ['bin/coffee'].concat(args), 'stderr', (status) ->
|
|
|
|
|
process.exit(1) if status isnt 0
|
|
|
|
|
callback() if typeof callback is 'function'
|
2010-03-08 06:34:07 -05:00
|
|
|
|
|
|
|
|
|
|
2017-02-18 02:47:02 -05:00
|
|
|
|
# Build the CoffeeScript language from source.
|
|
|
|
|
buildParser = ->
|
2016-11-30 00:19:11 -05:00
|
|
|
|
helpers.extend global, require 'util'
|
2010-06-28 00:26:45 -04:00
|
|
|
|
require 'jison'
|
2017-05-14 00:18:05 -04:00
|
|
|
|
# We don't need `moduleMain`, since the parser is unlikely to be run standalone.
|
|
|
|
|
parser = require('./lib/coffeescript/grammar').parser.generate(moduleMain: ->)
|
2017-02-12 20:00:05 -05:00
|
|
|
|
fs.writeFileSync 'lib/coffeescript/parser.js', parser
|
2010-02-16 01:04:48 -05:00
|
|
|
|
|
2017-02-18 02:47:02 -05:00
|
|
|
|
buildExceptParser = (callback) ->
|
|
|
|
|
files = fs.readdirSync 'src'
|
|
|
|
|
files = ('src/' + file for file in files when file.match(/\.(lit)?coffee$/))
|
2017-02-18 18:22:20 -05:00
|
|
|
|
run ['-c', '-o', 'lib/coffeescript'].concat(files), callback
|
2017-02-18 02:47:02 -05:00
|
|
|
|
|
|
|
|
|
build = (callback) ->
|
|
|
|
|
buildParser()
|
|
|
|
|
buildExceptParser callback
|
|
|
|
|
|
2019-03-27 02:55:31 -04:00
|
|
|
|
transpile = (code, options = {}) ->
|
2019-04-07 19:09:44 -04:00
|
|
|
|
options.minify = process.env.MINIFY isnt 'false'
|
|
|
|
|
options.transform = process.env.TRANSFORM isnt 'false'
|
|
|
|
|
options.sourceType ?= 'script'
|
2018-09-09 16:41:49 -04:00
|
|
|
|
babel = require '@babel/core'
|
[CS2] Fix CS2 docs mobile issues, improve performance (#4688)
* Get rid of offcanvas slide-in; fix sidebar
* We need to transpile docs.coffee, since Safari 9 throws an error on it and that’s too new a browser not to support; but this should also speed things up
* Fix some tabs
* Fix scrollbar
* Use Highlight.js to format placeholder code (during compilation, not rendering) before CodeMirror loads; match Highlight.js styles to CodeMirror styles as best we can
* Improve hash management
* Initialize CodeMirror on demand, on mouseover a particular code example, rather than all examples on startup
* Replace highlight.js with Prism for placeholder syntax highlighting
* Scratch Prism, use CodeMirror itself to do Node-based syntax highlighting, so that on CodeMirror initialization there’s no flash from mismatched highlighting
* Update packages; there’s a new version of Jison! (doesn’t change much)
* Fix mobile issues: use SVG play button icon, to avoid iOS blue square play button; make the code editor text 16px size explicit, to avoid unwanted mobile zoom; make the ‘code play’ buttons work even if the code examples are in placeholder (non-editable) mode, in case a user hasn’t moused over/tapped them
* Update docs output
* Whoops, CodeMirror is only a devDependency
2017-09-07 11:01:12 -04:00
|
|
|
|
presets = []
|
|
|
|
|
# Exclude the `modules` plugin in order to not break the `}(this));`
|
2017-09-15 09:58:18 -04:00
|
|
|
|
# at the end of the `build:browser` code block.
|
2019-03-27 02:55:31 -04:00
|
|
|
|
presets.push ['@babel/env', {modules: no}] if options.transform
|
|
|
|
|
presets.push ['minify', {mangle: no, evaluate: no, removeUndefined: no}] if options.minify
|
[CS2] Fix CS2 docs mobile issues, improve performance (#4688)
* Get rid of offcanvas slide-in; fix sidebar
* We need to transpile docs.coffee, since Safari 9 throws an error on it and that’s too new a browser not to support; but this should also speed things up
* Fix some tabs
* Fix scrollbar
* Use Highlight.js to format placeholder code (during compilation, not rendering) before CodeMirror loads; match Highlight.js styles to CodeMirror styles as best we can
* Improve hash management
* Initialize CodeMirror on demand, on mouseover a particular code example, rather than all examples on startup
* Replace highlight.js with Prism for placeholder syntax highlighting
* Scratch Prism, use CodeMirror itself to do Node-based syntax highlighting, so that on CodeMirror initialization there’s no flash from mismatched highlighting
* Update packages; there’s a new version of Jison! (doesn’t change much)
* Fix mobile issues: use SVG play button icon, to avoid iOS blue square play button; make the code editor text 16px size explicit, to avoid unwanted mobile zoom; make the ‘code play’ buttons work even if the code examples are in placeholder (non-editable) mode, in case a user hasn’t moused over/tapped them
* Update docs output
* Whoops, CodeMirror is only a devDependency
2017-09-07 11:01:12 -04:00
|
|
|
|
babelOptions =
|
2019-04-07 19:09:44 -04:00
|
|
|
|
presets: presets
|
2019-05-15 18:37:09 -04:00
|
|
|
|
compact: options.minify
|
|
|
|
|
minified: options.minify
|
2019-03-27 02:55:31 -04:00
|
|
|
|
comments: not options.minify
|
2019-04-07 19:09:44 -04:00
|
|
|
|
sourceType: options.sourceType
|
2019-05-15 18:37:09 -04:00
|
|
|
|
{ code } = babel.transformSync code, babelOptions unless presets.length is 0
|
[CS2] Fix CS2 docs mobile issues, improve performance (#4688)
* Get rid of offcanvas slide-in; fix sidebar
* We need to transpile docs.coffee, since Safari 9 throws an error on it and that’s too new a browser not to support; but this should also speed things up
* Fix some tabs
* Fix scrollbar
* Use Highlight.js to format placeholder code (during compilation, not rendering) before CodeMirror loads; match Highlight.js styles to CodeMirror styles as best we can
* Improve hash management
* Initialize CodeMirror on demand, on mouseover a particular code example, rather than all examples on startup
* Replace highlight.js with Prism for placeholder syntax highlighting
* Scratch Prism, use CodeMirror itself to do Node-based syntax highlighting, so that on CodeMirror initialization there’s no flash from mismatched highlighting
* Update packages; there’s a new version of Jison! (doesn’t change much)
* Fix mobile issues: use SVG play button icon, to avoid iOS blue square play button; make the code editor text 16px size explicit, to avoid unwanted mobile zoom; make the ‘code play’ buttons work even if the code examples are in placeholder (non-editable) mode, in case a user hasn’t moused over/tapped them
* Update docs output
* Whoops, CodeMirror is only a devDependency
2017-09-07 11:01:12 -04:00
|
|
|
|
code
|
|
|
|
|
|
2017-02-18 02:47:02 -05:00
|
|
|
|
testBuiltCode = (watch = no) ->
|
2017-02-18 18:22:20 -05:00
|
|
|
|
csPath = './lib/coffeescript'
|
2017-02-18 02:47:02 -05:00
|
|
|
|
csDir = path.dirname require.resolve csPath
|
|
|
|
|
|
|
|
|
|
for mod of require.cache when csDir is mod[0 ... csDir.length]
|
|
|
|
|
delete require.cache[mod]
|
|
|
|
|
|
|
|
|
|
testResults = runTests require csPath
|
|
|
|
|
unless watch
|
|
|
|
|
process.exit 1 unless testResults
|
|
|
|
|
|
|
|
|
|
buildAndTest = (includingParser = yes, harmony = no) ->
|
|
|
|
|
process.stdout.write '\x1Bc' # Clear terminal screen.
|
2017-09-15 09:58:18 -04:00
|
|
|
|
execSync 'git checkout lib/*', stdio: 'inherit' # Reset the generated compiler.
|
2017-02-18 02:47:02 -05:00
|
|
|
|
|
|
|
|
|
buildArgs = ['bin/cake']
|
|
|
|
|
buildArgs.push if includingParser then 'build' else 'build:except-parser'
|
|
|
|
|
log "building#{if includingParser then ', including parser' else ''}...", green
|
|
|
|
|
spawnNodeProcess buildArgs, 'both', ->
|
|
|
|
|
log 'testing...', green
|
|
|
|
|
testArgs = if harmony then ['--harmony'] else []
|
|
|
|
|
testArgs = testArgs.concat ['bin/cake', 'test']
|
|
|
|
|
spawnNodeProcess testArgs, 'both'
|
2016-11-16 00:28:35 -05:00
|
|
|
|
|
2017-02-18 02:47:02 -05:00
|
|
|
|
watchAndBuildAndTest = (harmony = no) ->
|
|
|
|
|
buildAndTest yes, harmony
|
|
|
|
|
fs.watch 'src/', interval: 200, (eventType, filename) ->
|
|
|
|
|
if eventType is 'change'
|
|
|
|
|
log "src/#{filename} changed, rebuilding..."
|
|
|
|
|
buildAndTest (filename is 'grammar.coffee'), harmony
|
|
|
|
|
fs.watch 'test/', {interval: 200, recursive: yes}, (eventType, filename) ->
|
|
|
|
|
if eventType is 'change'
|
|
|
|
|
log "test/#{filename} changed, rebuilding..."
|
|
|
|
|
buildAndTest no, harmony
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
task 'build', 'build the CoffeeScript compiler from source', build
|
|
|
|
|
|
|
|
|
|
task 'build:parser', 'build the Jison parser only', buildParser
|
|
|
|
|
|
|
|
|
|
task 'build:except-parser', 'build the CoffeeScript compiler, except for the Jison parser', buildExceptParser
|
|
|
|
|
|
|
|
|
|
task 'build:full', 'build the CoffeeScript compiler from source twice, and run the tests', ->
|
|
|
|
|
build ->
|
|
|
|
|
build testBuiltCode
|
|
|
|
|
|
2017-04-15 16:51:11 -04:00
|
|
|
|
task 'build:browser', 'merge the built scripts into a single file for use in a browser', ->
|
2016-12-15 23:52:31 -05:00
|
|
|
|
code = """
|
|
|
|
|
require['../../package.json'] = (function() {
|
|
|
|
|
return #{fs.readFileSync "./package.json"};
|
|
|
|
|
})();
|
|
|
|
|
"""
|
2017-02-12 20:00:05 -05:00
|
|
|
|
for name in ['helpers', 'rewriter', 'lexer', 'parser', 'scope', 'nodes', 'sourcemap', 'coffeescript', 'browser']
|
2010-11-10 23:06:26 -05:00
|
|
|
|
code += """
|
2013-06-02 01:21:36 -04:00
|
|
|
|
require['./#{name}'] = (function() {
|
2013-05-31 17:44:23 -04:00
|
|
|
|
var exports = {}, module = {exports: exports};
|
2017-02-12 20:00:05 -05:00
|
|
|
|
#{fs.readFileSync "lib/coffeescript/#{name}.js"}
|
2013-05-31 17:44:23 -04:00
|
|
|
|
return module.exports;
|
2013-06-02 01:21:36 -04:00
|
|
|
|
})();
|
2010-11-10 23:06:26 -05:00
|
|
|
|
"""
|
2019-03-27 02:55:31 -04:00
|
|
|
|
# From here, we generate two outputs: a legacy script output for all browsers
|
|
|
|
|
# and a module output for browsers that support `<script type="module">`.
|
2011-01-15 15:20:01 -05:00
|
|
|
|
code = """
|
2019-03-27 02:55:31 -04:00
|
|
|
|
var CoffeeScript = function() {
|
|
|
|
|
function require(path){ return require[path]; }
|
|
|
|
|
#{code}
|
|
|
|
|
return require['./browser'];
|
|
|
|
|
}();
|
|
|
|
|
"""
|
|
|
|
|
scriptCode = transpile """
|
2011-11-05 06:04:53 -04:00
|
|
|
|
(function(root) {
|
2019-03-27 02:55:31 -04:00
|
|
|
|
#{code}
|
2011-11-05 06:04:53 -04:00
|
|
|
|
|
2011-12-15 11:21:38 -05:00
|
|
|
|
if (typeof define === 'function' && define.amd) {
|
|
|
|
|
define(function() { return CoffeeScript; });
|
2012-11-29 12:43:18 -05:00
|
|
|
|
} else {
|
|
|
|
|
root.CoffeeScript = CoffeeScript;
|
2011-12-15 11:21:38 -05:00
|
|
|
|
}
|
2011-11-05 06:04:53 -04:00
|
|
|
|
}(this));
|
2010-11-10 23:06:26 -05:00
|
|
|
|
"""
|
2019-04-07 19:09:44 -04:00
|
|
|
|
moduleCode = transpile """
|
2019-03-27 02:55:31 -04:00
|
|
|
|
#{code}
|
|
|
|
|
|
|
|
|
|
export default CoffeeScript;
|
|
|
|
|
const { VERSION, compile, eval: evaluate, load, run, runScripts } = CoffeeScript;
|
|
|
|
|
export { VERSION, compile, evaluate as eval, load, run, runScripts };
|
2019-04-07 19:09:44 -04:00
|
|
|
|
""", {sourceType: 'module'}
|
|
|
|
|
outputFolders = [
|
|
|
|
|
"docs/v#{majorVersion}/browser-compiler-legacy"
|
|
|
|
|
"docs/v#{majorVersion}/browser-compiler-modern"
|
|
|
|
|
"lib/coffeescript-browser-compiler-legacy"
|
|
|
|
|
"lib/coffeescript-browser-compiler-modern"
|
|
|
|
|
]
|
|
|
|
|
for outputFolder in outputFolders
|
2019-03-27 02:55:31 -04:00
|
|
|
|
fs.mkdirSync outputFolder unless fs.existsSync outputFolder
|
|
|
|
|
fs.writeFileSync "#{outputFolder}/coffeescript.js", """
|
|
|
|
|
#{header}
|
2019-04-07 19:09:44 -04:00
|
|
|
|
#{if outputFolder.includes('legacy') then scriptCode else moduleCode}
|
2019-03-27 02:55:31 -04:00
|
|
|
|
"""
|
2017-04-15 16:51:11 -04:00
|
|
|
|
|
|
|
|
|
task 'build:browser:full', 'merge the built scripts into a single file for use in a browser, and test it', ->
|
|
|
|
|
invoke 'build:browser'
|
2011-01-15 15:12:47 -05:00
|
|
|
|
console.log "built ... running browser tests:"
|
2010-11-10 23:06:26 -05:00
|
|
|
|
invoke 'test:browser'
|
2010-02-24 19:57:29 -05:00
|
|
|
|
|
2017-02-18 02:47:02 -05:00
|
|
|
|
task 'build:watch', 'watch and continually rebuild the CoffeeScript compiler, running tests on each build', ->
|
|
|
|
|
watchAndBuildAndTest()
|
|
|
|
|
|
|
|
|
|
task 'build:watch:harmony', 'watch and continually rebuild the CoffeeScript compiler, running harmony tests on each build', ->
|
|
|
|
|
watchAndBuildAndTest yes
|
|
|
|
|
|
2010-02-24 19:57:29 -05:00
|
|
|
|
|
2017-02-18 02:47:02 -05:00
|
|
|
|
buildDocs = (watch = no) ->
|
2016-12-10 21:53:58 -05:00
|
|
|
|
# Constants
|
2019-03-30 14:31:22 -04:00
|
|
|
|
indexFile = 'documentation/site/index.html'
|
|
|
|
|
siteSourceFolder = "documentation/site"
|
|
|
|
|
sectionsSourceFolder = 'documentation/sections'
|
|
|
|
|
changelogSourceFolder = 'documentation/sections/changelog'
|
|
|
|
|
examplesSourceFolder = 'documentation/examples'
|
|
|
|
|
outputFolder = "docs/v#{majorVersion}"
|
2016-12-10 21:53:58 -05:00
|
|
|
|
|
2016-11-29 11:39:00 -05:00
|
|
|
|
# Helpers
|
2016-12-10 22:13:37 -05:00
|
|
|
|
releaseHeader = (date, version, prevVersion) ->
|
|
|
|
|
"""
|
2018-05-20 12:39:53 -04:00
|
|
|
|
<h3>#{prevVersion and "<a href=\"https://github.com/jashkenas/coffeescript/compare/#{prevVersion}...#{version}\">#{version}</a>" or version}
|
|
|
|
|
<span class="timestamp"> — <time datetime="#{date}">#{date}</time></span>
|
|
|
|
|
</h3>
|
2016-12-10 22:13:37 -05:00
|
|
|
|
"""
|
2016-12-07 17:23:05 -05:00
|
|
|
|
|
2017-09-18 11:19:19 -04:00
|
|
|
|
codeFor = require "./documentation/site/code.coffee"
|
2016-11-29 11:39:00 -05:00
|
|
|
|
|
2016-12-08 03:19:55 -05:00
|
|
|
|
htmlFor = ->
|
2017-04-10 02:07:58 -04:00
|
|
|
|
hljs = require 'highlight.js'
|
|
|
|
|
hljs.configure classPrefix: ''
|
|
|
|
|
markdownRenderer = require('markdown-it')
|
|
|
|
|
html: yes
|
|
|
|
|
typographer: yes
|
|
|
|
|
highlight: (str, lang) ->
|
|
|
|
|
# From https://github.com/markdown-it/markdown-it#syntax-highlighting
|
|
|
|
|
if lang and hljs.getLanguage(lang)
|
|
|
|
|
try
|
|
|
|
|
return hljs.highlight(lang, str).value
|
|
|
|
|
catch ex
|
|
|
|
|
return '' # No syntax highlighting
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Add some custom overrides to Markdown-It’s rendering, per
|
|
|
|
|
# https://github.com/markdown-it/markdown-it/blob/master/docs/architecture.md#renderer
|
|
|
|
|
defaultFence = markdownRenderer.renderer.rules.fence
|
|
|
|
|
markdownRenderer.renderer.rules.fence = (tokens, idx, options, env, slf) ->
|
|
|
|
|
code = tokens[idx].content
|
2016-12-11 01:21:12 -05:00
|
|
|
|
if code.indexOf('codeFor(') is 0 or code.indexOf('releaseHeader(') is 0
|
2016-12-08 03:19:55 -05:00
|
|
|
|
"<%= #{code} %>"
|
|
|
|
|
else
|
2017-04-10 02:07:58 -04:00
|
|
|
|
"<blockquote class=\"uneditable-code-block\">#{defaultFence.apply @, arguments}</blockquote>"
|
2016-12-08 03:19:55 -05:00
|
|
|
|
|
|
|
|
|
(file, bookmark) ->
|
2018-05-20 12:39:53 -04:00
|
|
|
|
md = fs.readFileSync "#{sectionsSourceFolder}/#{file.replace /\//g, path.sep}.md", 'utf-8'
|
2016-12-08 03:19:55 -05:00
|
|
|
|
md = md.replace /<%= releaseHeader %>/g, releaseHeader
|
|
|
|
|
md = md.replace /<%= majorVersion %>/g, majorVersion
|
|
|
|
|
md = md.replace /<%= fullVersion %>/g, CoffeeScript.VERSION
|
2017-04-10 02:07:58 -04:00
|
|
|
|
html = markdownRenderer.render md
|
2016-12-08 03:19:55 -05:00
|
|
|
|
html = _.template(html)
|
|
|
|
|
codeFor: codeFor()
|
|
|
|
|
releaseHeader: releaseHeader
|
|
|
|
|
|
[CS2] Fix CS2 docs mobile issues, improve performance (#4688)
* Get rid of offcanvas slide-in; fix sidebar
* We need to transpile docs.coffee, since Safari 9 throws an error on it and that’s too new a browser not to support; but this should also speed things up
* Fix some tabs
* Fix scrollbar
* Use Highlight.js to format placeholder code (during compilation, not rendering) before CodeMirror loads; match Highlight.js styles to CodeMirror styles as best we can
* Improve hash management
* Initialize CodeMirror on demand, on mouseover a particular code example, rather than all examples on startup
* Replace highlight.js with Prism for placeholder syntax highlighting
* Scratch Prism, use CodeMirror itself to do Node-based syntax highlighting, so that on CodeMirror initialization there’s no flash from mismatched highlighting
* Update packages; there’s a new version of Jison! (doesn’t change much)
* Fix mobile issues: use SVG play button icon, to avoid iOS blue square play button; make the code editor text 16px size explicit, to avoid unwanted mobile zoom; make the ‘code play’ buttons work even if the code examples are in placeholder (non-editable) mode, in case a user hasn’t moused over/tapped them
* Update docs output
* Whoops, CodeMirror is only a devDependency
2017-09-07 11:01:12 -04:00
|
|
|
|
includeScript = ->
|
|
|
|
|
(file) ->
|
2017-09-18 11:19:19 -04:00
|
|
|
|
file = "#{siteSourceFolder}/#{file}" unless '/' in file
|
[CS2] Fix CS2 docs mobile issues, improve performance (#4688)
* Get rid of offcanvas slide-in; fix sidebar
* We need to transpile docs.coffee, since Safari 9 throws an error on it and that’s too new a browser not to support; but this should also speed things up
* Fix some tabs
* Fix scrollbar
* Use Highlight.js to format placeholder code (during compilation, not rendering) before CodeMirror loads; match Highlight.js styles to CodeMirror styles as best we can
* Improve hash management
* Initialize CodeMirror on demand, on mouseover a particular code example, rather than all examples on startup
* Replace highlight.js with Prism for placeholder syntax highlighting
* Scratch Prism, use CodeMirror itself to do Node-based syntax highlighting, so that on CodeMirror initialization there’s no flash from mismatched highlighting
* Update packages; there’s a new version of Jison! (doesn’t change much)
* Fix mobile issues: use SVG play button icon, to avoid iOS blue square play button; make the code editor text 16px size explicit, to avoid unwanted mobile zoom; make the ‘code play’ buttons work even if the code examples are in placeholder (non-editable) mode, in case a user hasn’t moused over/tapped them
* Update docs output
* Whoops, CodeMirror is only a devDependency
2017-09-07 11:01:12 -04:00
|
|
|
|
code = fs.readFileSync file, 'utf-8'
|
|
|
|
|
code = CoffeeScript.compile code
|
|
|
|
|
code = transpile code
|
|
|
|
|
code
|
|
|
|
|
|
2016-12-11 01:21:12 -05:00
|
|
|
|
include = ->
|
|
|
|
|
(file) ->
|
2017-09-18 11:19:19 -04:00
|
|
|
|
file = "#{siteSourceFolder}/#{file}" unless '/' in file
|
2016-12-11 01:21:12 -05:00
|
|
|
|
output = fs.readFileSync file, 'utf-8'
|
|
|
|
|
if /\.html$/.test(file)
|
|
|
|
|
render = _.template output
|
|
|
|
|
output = render
|
|
|
|
|
releaseHeader: releaseHeader
|
|
|
|
|
majorVersion: majorVersion
|
|
|
|
|
fullVersion: CoffeeScript.VERSION
|
|
|
|
|
htmlFor: htmlFor()
|
|
|
|
|
codeFor: codeFor()
|
|
|
|
|
include: include()
|
[CS2] Fix CS2 docs mobile issues, improve performance (#4688)
* Get rid of offcanvas slide-in; fix sidebar
* We need to transpile docs.coffee, since Safari 9 throws an error on it and that’s too new a browser not to support; but this should also speed things up
* Fix some tabs
* Fix scrollbar
* Use Highlight.js to format placeholder code (during compilation, not rendering) before CodeMirror loads; match Highlight.js styles to CodeMirror styles as best we can
* Improve hash management
* Initialize CodeMirror on demand, on mouseover a particular code example, rather than all examples on startup
* Replace highlight.js with Prism for placeholder syntax highlighting
* Scratch Prism, use CodeMirror itself to do Node-based syntax highlighting, so that on CodeMirror initialization there’s no flash from mismatched highlighting
* Update packages; there’s a new version of Jison! (doesn’t change much)
* Fix mobile issues: use SVG play button icon, to avoid iOS blue square play button; make the code editor text 16px size explicit, to avoid unwanted mobile zoom; make the ‘code play’ buttons work even if the code examples are in placeholder (non-editable) mode, in case a user hasn’t moused over/tapped them
* Update docs output
* Whoops, CodeMirror is only a devDependency
2017-09-07 11:01:12 -04:00
|
|
|
|
includeScript: includeScript()
|
2016-12-11 01:21:12 -05:00
|
|
|
|
output
|
2016-11-30 00:19:11 -05:00
|
|
|
|
|
2016-12-10 22:13:37 -05:00
|
|
|
|
# Task
|
|
|
|
|
do renderIndex = ->
|
|
|
|
|
render = _.template fs.readFileSync(indexFile, 'utf-8')
|
|
|
|
|
output = render
|
2016-12-11 01:21:12 -05:00
|
|
|
|
include: include()
|
2016-12-10 22:13:37 -05:00
|
|
|
|
fs.writeFileSync "#{outputFolder}/index.html", output
|
|
|
|
|
log 'compiled', green, "#{indexFile} → #{outputFolder}/index.html"
|
|
|
|
|
try
|
|
|
|
|
fs.symlinkSync "v#{majorVersion}/index.html", 'docs/index.html'
|
|
|
|
|
catch exception
|
|
|
|
|
|
2017-02-18 02:47:02 -05:00
|
|
|
|
if watch
|
2019-03-30 14:31:22 -04:00
|
|
|
|
for target in [indexFile, siteSourceFolder, examplesSourceFolder, sectionsSourceFolder, changelogSourceFolder]
|
2017-02-18 02:47:02 -05:00
|
|
|
|
fs.watch target, interval: 200, renderIndex
|
|
|
|
|
log 'watching...', green
|
2016-11-29 11:39:00 -05:00
|
|
|
|
|
2017-02-18 02:47:02 -05:00
|
|
|
|
task 'doc:site', 'build the documentation for the website', ->
|
|
|
|
|
buildDocs()
|
2016-12-10 22:13:37 -05:00
|
|
|
|
|
2017-02-18 02:47:02 -05:00
|
|
|
|
task 'doc:site:watch', 'watch and continually rebuild the documentation for the website', ->
|
|
|
|
|
buildDocs yes
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
buildDocTests = (watch = no) ->
|
2016-12-10 22:13:37 -05:00
|
|
|
|
# Constants
|
2017-09-18 11:19:19 -04:00
|
|
|
|
testFile = 'documentation/site/test.html'
|
2016-12-10 22:13:37 -05:00
|
|
|
|
testsSourceFolder = 'test'
|
2017-09-18 11:19:19 -04:00
|
|
|
|
outputFolder = "docs/v#{majorVersion}"
|
2016-12-10 22:13:37 -05:00
|
|
|
|
|
|
|
|
|
# Included in test.html
|
2016-11-30 00:19:11 -05:00
|
|
|
|
testHelpers = fs.readFileSync('test/support/helpers.coffee', 'utf-8').replace /exports\./g, '@'
|
|
|
|
|
|
2016-12-10 22:13:37 -05:00
|
|
|
|
# Helpers
|
2016-11-29 21:13:12 -05:00
|
|
|
|
testsInScriptBlocks = ->
|
|
|
|
|
output = ''
|
2016-12-10 22:13:37 -05:00
|
|
|
|
for filename in fs.readdirSync testsSourceFolder
|
2016-11-29 21:13:12 -05:00
|
|
|
|
if filename.indexOf('.coffee') isnt -1
|
|
|
|
|
type = 'coffeescript'
|
|
|
|
|
else if filename.indexOf('.litcoffee') isnt -1
|
|
|
|
|
type = 'literate-coffeescript'
|
|
|
|
|
else
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
# Set the type to text/x-coffeescript or text/x-literate-coffeescript
|
|
|
|
|
# to prevent the browser compiler from automatically running the script
|
|
|
|
|
output += """
|
|
|
|
|
<script type="text/x-#{type}" class="test" id="#{filename.split('.')[0]}">
|
|
|
|
|
#{fs.readFileSync "test/#{filename}", 'utf-8'}
|
|
|
|
|
</script>\n
|
|
|
|
|
"""
|
|
|
|
|
output
|
|
|
|
|
|
2016-11-29 11:39:00 -05:00
|
|
|
|
# Task
|
2016-11-29 21:13:12 -05:00
|
|
|
|
do renderTest = ->
|
|
|
|
|
render = _.template fs.readFileSync(testFile, 'utf-8')
|
|
|
|
|
output = render
|
2016-11-30 00:19:11 -05:00
|
|
|
|
testHelpers: testHelpers
|
2016-11-29 21:13:12 -05:00
|
|
|
|
tests: testsInScriptBlocks()
|
2016-12-10 21:53:58 -05:00
|
|
|
|
fs.writeFileSync "#{outputFolder}/test.html", output
|
|
|
|
|
log 'compiled', green, "#{testFile} → #{outputFolder}/test.html"
|
|
|
|
|
|
2017-02-18 02:47:02 -05:00
|
|
|
|
if watch
|
|
|
|
|
for target in [testFile, testsSourceFolder]
|
|
|
|
|
fs.watch target, interval: 200, renderTest
|
|
|
|
|
log 'watching...', green
|
|
|
|
|
|
|
|
|
|
task 'doc:test', 'build the browser-based tests', ->
|
|
|
|
|
buildDocTests()
|
|
|
|
|
|
|
|
|
|
task 'doc:test:watch', 'watch and continually rebuild the browser-based tests', ->
|
|
|
|
|
buildDocTests yes
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
buildAnnotatedSource = (watch = no) ->
|
|
|
|
|
do generateAnnotatedSource = ->
|
2018-02-01 23:14:26 -05:00
|
|
|
|
exec "cd src && ../node_modules/docco/bin/docco *.*coffee --output ../docs/v#{majorVersion}/annotated-source", (err) -> throw err if err
|
2017-02-18 02:47:02 -05:00
|
|
|
|
log 'generated', green, "annotated source in docs/v#{majorVersion}/annotated-source/"
|
|
|
|
|
|
|
|
|
|
if watch
|
|
|
|
|
fs.watch 'src/', interval: 200, generateAnnotatedSource
|
|
|
|
|
log 'watching...', green
|
|
|
|
|
|
|
|
|
|
task 'doc:source', 'build the annotated source documentation', ->
|
|
|
|
|
buildAnnotatedSource()
|
2010-02-24 19:57:29 -05:00
|
|
|
|
|
2017-02-18 02:47:02 -05:00
|
|
|
|
task 'doc:source:watch', 'watch and continually rebuild the annotated source documentation', ->
|
|
|
|
|
buildAnnotatedSource yes
|
2010-03-06 19:02:31 -05:00
|
|
|
|
|
|
|
|
|
|
2017-02-18 02:47:02 -05:00
|
|
|
|
task 'release', 'build and test the CoffeeScript source, and build the documentation', ->
|
2017-08-23 09:50:46 -04:00
|
|
|
|
execSync '''
|
|
|
|
|
cake build:full
|
|
|
|
|
cake build:browser
|
|
|
|
|
cake test:browser
|
|
|
|
|
cake test:integrations
|
|
|
|
|
cake doc:site
|
|
|
|
|
cake doc:test
|
|
|
|
|
cake doc:source''', stdio: 'inherit'
|
|
|
|
|
|
2010-03-07 19:07:37 -05:00
|
|
|
|
|
2011-10-07 00:39:24 -04:00
|
|
|
|
task 'bench', 'quick benchmark of compilation time', ->
|
2017-02-12 20:00:05 -05:00
|
|
|
|
{Rewriter} = require './lib/coffeescript/rewriter'
|
|
|
|
|
sources = ['coffeescript', 'grammar', 'helpers', 'lexer', 'nodes', 'rewriter']
|
2013-02-01 20:36:05 -05:00
|
|
|
|
coffee = sources.map((name) -> fs.readFileSync "src/#{name}.coffee").join '\n'
|
|
|
|
|
litcoffee = fs.readFileSync("src/scope.litcoffee").toString()
|
2010-11-20 20:28:45 -05:00
|
|
|
|
fmt = (ms) -> " #{bold}#{ " #{ms}".slice -4 }#{reset} ms"
|
2010-11-18 07:33:56 -05:00
|
|
|
|
total = 0
|
2010-11-17 11:34:23 -05:00
|
|
|
|
now = Date.now()
|
2010-11-18 07:33:56 -05:00
|
|
|
|
time = -> total += ms = -(now - now = Date.now()); fmt ms
|
2013-02-01 20:36:05 -05:00
|
|
|
|
tokens = CoffeeScript.tokens coffee, rewrite: no
|
|
|
|
|
littokens = CoffeeScript.tokens litcoffee, rewrite: no, literate: yes
|
|
|
|
|
tokens = tokens.concat(littokens)
|
2010-11-18 07:33:56 -05:00
|
|
|
|
console.log "Lex #{time()} (#{tokens.length} tokens)"
|
2010-11-17 11:34:23 -05:00
|
|
|
|
tokens = new Rewriter().rewrite tokens
|
2010-11-18 07:33:56 -05:00
|
|
|
|
console.log "Rewrite#{time()} (#{tokens.length} tokens)"
|
2010-11-17 11:34:23 -05:00
|
|
|
|
nodes = CoffeeScript.nodes tokens
|
2010-11-18 07:33:56 -05:00
|
|
|
|
console.log "Parse #{time()}"
|
2013-02-01 20:36:05 -05:00
|
|
|
|
js = nodes.compile bare: yes
|
2010-11-18 07:33:56 -05:00
|
|
|
|
console.log "Compile#{time()} (#{js.length} chars)"
|
2010-11-20 20:28:45 -05:00
|
|
|
|
console.log "total #{ fmt total }"
|
2010-03-07 19:07:37 -05:00
|
|
|
|
|
2010-06-11 18:47:48 -04:00
|
|
|
|
|
2010-12-11 20:30:48 -05:00
|
|
|
|
# Run the CoffeeScript test suite.
|
2011-10-07 00:39:24 -04:00
|
|
|
|
runTests = (CoffeeScript) ->
|
2017-05-14 00:18:05 -04:00
|
|
|
|
CoffeeScript.register() unless global.testingBrowser
|
2016-11-02 11:51:26 -04:00
|
|
|
|
|
|
|
|
|
# These are attached to `global` so that they’re accessible from within
|
|
|
|
|
# `test/async.coffee`, which has an async-capable version of
|
|
|
|
|
# `global.test`.
|
|
|
|
|
global.currentFile = null
|
|
|
|
|
global.passedTests = 0
|
|
|
|
|
global.failures = []
|
2010-11-28 12:27:06 -05:00
|
|
|
|
|
2011-11-05 11:12:50 -04:00
|
|
|
|
global[name] = func for name, func of require 'assert'
|
2010-12-21 15:45:46 -05:00
|
|
|
|
|
2010-12-11 20:30:48 -05:00
|
|
|
|
# Convenience aliases.
|
2010-09-27 01:17:05 -04:00
|
|
|
|
global.CoffeeScript = CoffeeScript
|
[CS2] Comments (#4572)
* Make `addLocationDataFn` more DRY
* Style fixes
* Provide access to full parser inside our custom function running in parser.js; rename the function to lay the groundwork for adding data aside from location data
* Fix style.
* Fix style.
* Label test comments
* Update grammar to remove comment tokens; update DSL to call new helper function that preserves comments through parsing
* New implementation of compiling block comments: the lexer pulls them out of the token stream, attaching them as a property to a token; the rewriter moves the attachment around so it lives on a token that is destined to make it through to compilation (and in a good placement); and the nodes render the block comment. All tests but one pass (commented out).
* If a comment follows a class declaration, move the comment inside the class body
* Style
* Improve indentation of multiline comments
* Fix indentation for block comments, at least in the cases covered by the one failing test
* Don’t reverse the order of unshifted comments
* Simplify rewriter’s handling of comments, generalizing the special case
* Expand the list of tokens we need to avoid for passing comments through the parser; get some literal tokens to have nodes created for them so that the comments pass through
* Improve comments; fix multiline flag
* Prepare HereComments for processing line comments
* Line comments, first draft: the tests pass, but the line comments aren’t indented and sometimes trail previous lines when they shouldn’t; updated compiler output in following commit
* Updated compiler, now with line comments
* `process` doesn’t exist in the browser, so we should check for its existence first
* Update parser output
* Test that proves #4290 is fixed
* Indent line comments, first pass
* Compiled output with indented line comments
* Comments that start a new line shouldn’t trail; don’t skip comments attached to generated tokens; stop looking for indentation once we hit a newline
* Revised output
* Cleanup
* Split “multiline” line comment tokens, shifting them forward or back as appropriate
* Fix comments in module specifiers
* Abstract attaching comments to a node
* Line comments in interpolated strings
* Line comments can’t be multiline anymore
* Improve handling of blank lines and indentation of following comments that start a new line (i.e. don’t trail)
* Make comments compilation more object-oriented
* Remove lots of dead code that we don’t need anymore because a comment is never a node, only a fragment
* Improve eqJS helper
* Fix #4290 definitively, with improved output for arrays with interspersed block comments
* Add support for line comments output interspersed within arrays
* Fix mistake, don’t lose the variable we’re working on
* Remove redundant replacements
* Check for indentation only from the start of the string
* Indentations in generated JS are always multiples of two spaces (never tabs) so just look for 2+ spaces
* Update package versions; run Babel twice, once for each preset, temporarily until a Babili bug is fixed that prevents it from running with the env preset
* Don’t rely on `fragment.type`, which can break when the compiler is minified
* Updated generated docs and browser compiler
* Output block comments after function arguments
* Comments appear above scope `var` declarations; better tracking of generated `JS` tokens created only to shepherd comments through to the output
* Create new FuncGlyph node, to hold comments we want to output near the function parameters
* Block comments between `)` and `->`/`=>` get output between `)` and `{`.
* Fix indentation of comments that are the first line inside a bare mode block
* Updated output
* Full Flow example
* Updated browser compiler
* Abstract and organize comment fragment generation code; store more properties on the comment fragment objects; make `throw` behave like `return`
* Abstract token insertion code
* Add missing locationData to STRING_START token, giving it the locationData of the overall StringWithInterpolations token so that comments attached to STRING_START end up on the StringWithInterpolations node
* Allow `SUPER` tokens to carry comments
* Rescue comments from `Existence` nodes and `If` nodes’ conditions
* Rescue comments after `\` line continuation tokens
* Updated compiled output
* Updated browser compiler
* Output block comments in the same `compileFragments` method as line comments, except for inline block comments
* Comments before splice
* Updated browser compiler
* Track compiledComments as a property of Base, to ensure that it’s not a global variable
* Docs: split up the Usage section
* Docs for type annotations via Flow; updated docs output
* Update regular comments documentation
* Updated browser compiler
* Comments before soak
* Comments before static methods, and probably before `@variable =` (this) assignments generally
* Comments before ‘if exists?’, refactor comment before ‘if this.var’ to be more precise, improve helper methods
* Comments before a method that contains ‘super()’ should output above the method property, not above the ‘super.method()’ call
* Fix missing comments before `if not` (i.e. before a UNARY token)
* Fix comments before ‘for’; add test for comment before assignment if (fixed in earlier commit)
* Comments within heregexes
* Updated browser compiler
* Update description to reflect what’s now happening in compileCommentFragments
* Preserve blank lines between line comments; output “whitespace-only” line comments as blank lines, rather than `//` following by whitespace
* Better future-proof comments tests
* Comments before object destructuring; abstract method for setting comments aside before compilation
* Handle more cases of comments before or after `for` loop declaration lines
* Fix indentation of comments preceding `for` loops
* Fix comment before splat function parameter
* Catch another RegexWithInterpolations comment edge case
* Updated browser compiler
* Change heregex example to one that’s more readable; update output
* Remove a few last references to the defunct HERECOMMENT token
* Abstract location hash creation into a function
* Improved clarity per code review notes
* Updated browser compiler
2017-08-02 22:34:34 -04:00
|
|
|
|
global.Repl = require './lib/coffeescript/repl'
|
|
|
|
|
global.bold = bold
|
|
|
|
|
global.red = red
|
|
|
|
|
global.green = green
|
|
|
|
|
global.yellow = yellow
|
|
|
|
|
global.reset = reset
|
2010-12-11 20:30:48 -05:00
|
|
|
|
|
2017-09-01 15:26:47 -04:00
|
|
|
|
asyncTests = []
|
|
|
|
|
onFail = (description, fn, err) ->
|
|
|
|
|
failures.push
|
|
|
|
|
filename: global.currentFile
|
|
|
|
|
error: err
|
|
|
|
|
description: description
|
|
|
|
|
source: fn.toString() if fn.toString?
|
|
|
|
|
|
2010-12-11 20:30:48 -05:00
|
|
|
|
# Our test helper function for delimiting different test cases.
|
2010-12-09 23:59:50 -05:00
|
|
|
|
global.test = (description, fn) ->
|
2010-12-11 20:30:48 -05:00
|
|
|
|
try
|
2011-01-03 04:17:00 -05:00
|
|
|
|
fn.test = {description, currentFile}
|
2017-09-01 15:26:47 -04:00
|
|
|
|
result = fn.call(fn)
|
|
|
|
|
if result instanceof Promise # An async test.
|
|
|
|
|
asyncTests.push result
|
|
|
|
|
result.then ->
|
|
|
|
|
passedTests++
|
|
|
|
|
.catch (err) ->
|
|
|
|
|
onFail description, fn, err
|
|
|
|
|
else
|
|
|
|
|
passedTests++
|
|
|
|
|
catch err
|
|
|
|
|
onFail description, fn, err
|
|
|
|
|
|
2016-11-30 00:19:11 -05:00
|
|
|
|
helpers.extend global, require './test/support/helpers'
|
2010-12-16 00:12:11 -05:00
|
|
|
|
|
2011-08-14 16:39:38 -04:00
|
|
|
|
# When all the tests have run, collect and print errors.
|
|
|
|
|
# If a stacktrace is available, output the compiled function source.
|
|
|
|
|
process.on 'exit', ->
|
|
|
|
|
time = ((Date.now() - startTime) / 1000).toFixed(2)
|
2011-10-07 00:39:24 -04:00
|
|
|
|
message = "passed #{passedTests} tests in #{time} seconds#{reset}"
|
2011-08-14 16:39:38 -04:00
|
|
|
|
return log(message, green) unless failures.length
|
|
|
|
|
log "failed #{failures.length} and #{message}", red
|
|
|
|
|
for fail in failures
|
2012-11-14 16:19:17 -05:00
|
|
|
|
{error, filename, description, source} = fail
|
2011-08-14 16:39:38 -04:00
|
|
|
|
console.log ''
|
2012-11-14 16:19:17 -05:00
|
|
|
|
log " #{description}", red if description
|
2011-08-14 16:39:38 -04:00
|
|
|
|
log " #{error.stack}", red
|
2012-11-14 16:19:17 -05:00
|
|
|
|
console.log " #{source}" if source
|
2011-08-14 16:39:38 -04:00
|
|
|
|
return
|
|
|
|
|
|
2018-03-12 22:03:44 -04:00
|
|
|
|
# Run every test in the `test` folder, recording failures, except for files
|
|
|
|
|
# we’re skipping because the features to be tested are unsupported in the
|
|
|
|
|
# current Node runtime.
|
|
|
|
|
testFilesToSkip = []
|
|
|
|
|
skipUnless = (featureDetect, filenames) ->
|
|
|
|
|
unless (try new Function featureDetect)
|
|
|
|
|
testFilesToSkip = testFilesToSkip.concat filenames
|
|
|
|
|
skipUnless 'async () => {}', ['async.coffee', 'async_iterators.coffee']
|
|
|
|
|
skipUnless 'async function* generator() { yield 42; }', ['async_iterators.coffee']
|
|
|
|
|
skipUnless 'var a = 2 ** 2; a **= 3', ['exponentiation.coffee']
|
2018-04-23 12:50:42 -04:00
|
|
|
|
skipUnless 'var {...a} = {}', ['object_rest_spread.coffee']
|
2018-03-30 18:25:41 -04:00
|
|
|
|
skipUnless '/foo.bar/s.test("foo\tbar")', ['regex_dotall.coffee']
|
2018-03-12 22:03:44 -04:00
|
|
|
|
files = fs.readdirSync('test').filter (filename) ->
|
|
|
|
|
filename not in testFilesToSkip
|
2013-11-30 15:26:32 -05:00
|
|
|
|
|
2017-09-01 15:26:47 -04:00
|
|
|
|
startTime = Date.now()
|
2013-05-25 10:04:18 -04:00
|
|
|
|
for file in files when helpers.isCoffee file
|
2013-02-27 21:54:17 -05:00
|
|
|
|
literate = helpers.isLiterate file
|
2011-07-18 17:47:31 -04:00
|
|
|
|
currentFile = filename = path.join 'test', file
|
|
|
|
|
code = fs.readFileSync filename
|
|
|
|
|
try
|
2012-09-25 20:35:02 -04:00
|
|
|
|
CoffeeScript.run code.toString(), {filename, literate}
|
2011-07-18 17:47:31 -04:00
|
|
|
|
catch error
|
|
|
|
|
failures.push {filename, error}
|
2017-09-01 15:26:47 -04:00
|
|
|
|
|
|
|
|
|
Promise.all(asyncTests).then ->
|
|
|
|
|
Promise.reject() if failures.length isnt 0
|
2010-10-11 10:42:13 -04:00
|
|
|
|
|
|
|
|
|
|
2011-10-07 00:39:24 -04:00
|
|
|
|
task 'test', 'run the CoffeeScript language test suite', ->
|
2017-09-01 15:26:47 -04:00
|
|
|
|
runTests(CoffeeScript).catch -> process.exit 1
|
2010-10-11 10:42:13 -04:00
|
|
|
|
|
|
|
|
|
|
2011-10-07 00:39:24 -04:00
|
|
|
|
task 'test:browser', 'run the test suite against the merged browser script', ->
|
2019-04-07 19:09:44 -04:00
|
|
|
|
source = fs.readFileSync "lib/coffeescript-browser-compiler-legacy/coffeescript.js", 'utf-8'
|
2010-10-11 13:27:05 -04:00
|
|
|
|
result = {}
|
2010-12-12 21:41:04 -05:00
|
|
|
|
global.testingBrowser = yes
|
2010-10-11 13:27:05 -04:00
|
|
|
|
(-> eval source).call result
|
2017-09-01 15:26:47 -04:00
|
|
|
|
runTests(CoffeeScript).catch -> process.exit 1
|
|
|
|
|
|
2017-05-14 00:18:05 -04:00
|
|
|
|
|
|
|
|
|
task 'test:integrations', 'test the module integrated with other libraries and environments', ->
|
|
|
|
|
# Tools like Webpack and Browserify generate builds intended for a browser
|
|
|
|
|
# environment where Node modules are not available. We want to ensure that
|
|
|
|
|
# the CoffeeScript module as presented by the `browser` key in `package.json`
|
|
|
|
|
# can be built by such tools; if such a build succeeds, it verifies that no
|
|
|
|
|
# Node modules are required as part of the compiler (as opposed to the tests)
|
|
|
|
|
# and that therefore the compiler will run in a browser environment.
|
|
|
|
|
tmpdir = os.tmpdir()
|
2017-09-15 09:58:18 -04:00
|
|
|
|
webpack = require 'webpack'
|
|
|
|
|
webpack {
|
|
|
|
|
entry: './'
|
2019-03-24 02:28:13 -04:00
|
|
|
|
optimization:
|
|
|
|
|
# Webpack’s minification causes the CoffeeScript module to fail some tests.
|
|
|
|
|
minimize: off
|
2017-09-15 09:58:18 -04:00
|
|
|
|
output:
|
|
|
|
|
path: tmpdir
|
|
|
|
|
filename: 'coffeescript.js'
|
|
|
|
|
library: 'CoffeeScript'
|
|
|
|
|
libraryTarget: 'commonjs2'
|
|
|
|
|
}, (err, stats) ->
|
|
|
|
|
if err or stats.hasErrors()
|
|
|
|
|
if err
|
|
|
|
|
console.error err.stack or err
|
|
|
|
|
console.error err.details if err.details
|
|
|
|
|
if stats.hasErrors()
|
|
|
|
|
console.error error for error in stats.compilation.errors
|
|
|
|
|
if stats.hasWarnings()
|
|
|
|
|
console.warn warning for warning in stats.compilation.warnings
|
|
|
|
|
process.exit 1
|
|
|
|
|
|
|
|
|
|
builtCompiler = path.join tmpdir, 'coffeescript.js'
|
|
|
|
|
CoffeeScript = require builtCompiler
|
|
|
|
|
global.testingBrowser = yes
|
|
|
|
|
testResults = runTests CoffeeScript
|
|
|
|
|
fs.unlinkSync builtCompiler
|
|
|
|
|
process.exit 1 unless testResults
|