This brings this codebase up to speed with current JS standards. - Moved tests to an updated version in test/feature_extractor.js (based on test/compress.js, which in turn was evolved from test/run-tests.js) - Update test/feature_extractor/*.js files to use valid JS syntax ( multiline strings in JS template strings) - Drop use of deprecated sys methods (using console instead). Upstream changes supporting the development process (.github/ and CONTRIBUTING.md) were not included in this merge.
13 lines
438 B
JavaScript
13 lines
438 B
JavaScript
exports["Dictionary"] = Dictionary;
|
|
exports["is_statement"] = is_statement;
|
|
exports["List"] = List;
|
|
exports["minify"] = minify;
|
|
exports["parse"] = parse;
|
|
exports["push_uniq"] = push_uniq;
|
|
exports["TreeTransformer"] = TreeTransformer;
|
|
exports["TreeWalker"] = TreeWalker;
|
|
exports["extractFeatures"] = extractFeatures;
|
|
exports["Parse_Error"] = Parse_Error;
|
|
exports["Minified_Error"] = Minified_Error;
|
|
exports["OutputStream"] = OutputStream;
|