Compare commits
28 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4cbf5a7821 | ||
|
|
93d4224072 | ||
|
|
6cd580dc23 | ||
|
|
ecb63ad8bc | ||
|
|
1ca43bcca1 | ||
|
|
3ee1464aa4 | ||
|
|
24967b8be8 | ||
|
|
a8c67ea353 | ||
|
|
d0b0aecfc5 | ||
|
|
9f5a6029a3 | ||
|
|
4027a0c962 | ||
|
|
87f8a484e6 | ||
|
|
c736834aa4 | ||
|
|
9a98513981 | ||
|
|
f631d6437a | ||
|
|
aa7e8783f8 | ||
|
|
13e5e33448 | ||
|
|
487ae8e3be | ||
|
|
5dfda6e212 | ||
|
|
d08c772eb3 | ||
|
|
90ed54401b | ||
|
|
d8106b6c63 | ||
|
|
dda4eb96e1 | ||
|
|
7305ba0296 | ||
|
|
2c21dc5e8e | ||
|
|
d0faa471db | ||
|
|
6ad823d1e8 | ||
|
|
43ad4e9775 |
30
.github/ISSUE_TEMPLATE.md
vendored
30
.github/ISSUE_TEMPLATE.md
vendored
@@ -1,25 +1,9 @@
|
|||||||
**Bug report or feature request?**
|
- Bug report or feature request? <!-- Note: sub-optimal but correct code is not a bug -->
|
||||||
|
- `uglify-js` version (`uglifyjs -V`)
|
||||||
<!-- Note: sub-optimal but correct code is not a bug -->
|
- JavaScript input - ideally as small as possible.
|
||||||
|
- The `uglifyjs` CLI command executed or `minify()` options used.
|
||||||
**Uglify version (`uglifyjs -V`)**
|
- An example of JavaScript output produced and/or the error or warning.
|
||||||
|
|
||||||
**JavaScript input**
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
A complete parsable JS program exhibiting the issue with
|
Note: the release version of uglify-js only supports ES5. Those wishing
|
||||||
UglifyJS alone - without third party tools or libraries.
|
to minify ES6 should use the experimental harmony branch.
|
||||||
Ideally the input should be as small as possible.
|
|
||||||
Post a link to a gist if necessary.
|
|
||||||
|
|
||||||
Issues without a reproducible test case will be closed.
|
|
||||||
-->
|
|
||||||
|
|
||||||
**The `uglifyjs` CLI command executed or `minify()` options used.**
|
|
||||||
|
|
||||||
**JavaScript output or error produced.**
|
|
||||||
|
|
||||||
<!--
|
|
||||||
Note: `uglify-js` only supports JavaScript.
|
|
||||||
Those wishing to minify ES6+ should transpile first.
|
|
||||||
-->
|
-->
|
||||||
|
|||||||
31
.github/workflows/ci.yml
vendored
31
.github/workflows/ci.yml
vendored
@@ -1,31 +0,0 @@
|
|||||||
name: CI
|
|
||||||
on: [ push, pull_request ]
|
|
||||||
jobs:
|
|
||||||
test:
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
os: [ ubuntu-latest, windows-latest ]
|
|
||||||
node: [ "0.10", 0.12, 4, 6, 8, 10, latest ]
|
|
||||||
script: [ compress, mocha, release/benchmark, release/jetstream ]
|
|
||||||
name: ${{ matrix.os }} ${{ matrix.node }} ${{ matrix.script }}
|
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
env:
|
|
||||||
NODE: ${{ matrix.node }}
|
|
||||||
TYPE: ${{ matrix.script }}
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- uses: actions/cache@v1
|
|
||||||
with:
|
|
||||||
path: tmp
|
|
||||||
key: tmp ${{ matrix.script }}
|
|
||||||
- name: Perform tests
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
git clone --branch v1.5.3 --depth 1 https://github.com/jasongin/nvs.git ~/.nvs
|
|
||||||
. ~/.nvs/nvs.sh --version
|
|
||||||
nvs add $NODE
|
|
||||||
nvs use $NODE
|
|
||||||
node --version
|
|
||||||
npm --version --no-update-notifier
|
|
||||||
npm install --no-audit --no-optional --no-save --no-update-notifier
|
|
||||||
node test/$TYPE
|
|
||||||
25
.github/workflows/ufuzz.yml
vendored
25
.github/workflows/ufuzz.yml
vendored
@@ -1,25 +0,0 @@
|
|||||||
name: Fuzzing
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: "*/15 * * * *"
|
|
||||||
jobs:
|
|
||||||
ufuzz:
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
os: [ ubuntu-latest, windows-latest ]
|
|
||||||
name: ${{ matrix.os }}
|
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- name: Perform fuzzing
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
git clone --branch v1.5.3 --depth 1 https://github.com/jasongin/nvs.git ~/.nvs
|
|
||||||
. ~/.nvs/nvs.sh --version
|
|
||||||
nvs add 10
|
|
||||||
nvs use 10
|
|
||||||
node --version
|
|
||||||
npm --version --no-update-notifier
|
|
||||||
npm install --no-audit --no-optional --no-save --no-update-notifier
|
|
||||||
node test/ufuzz/job 3600000
|
|
||||||
12
.travis.yml
Normal file
12
.travis.yml
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
language: node_js
|
||||||
|
before_install: "npm install -g npm"
|
||||||
|
node_js:
|
||||||
|
- "0.10"
|
||||||
|
- "0.12"
|
||||||
|
- "4"
|
||||||
|
- "6"
|
||||||
|
env:
|
||||||
|
- UGLIFYJS_TEST_ALL=1
|
||||||
|
matrix:
|
||||||
|
fast_finish: true
|
||||||
|
sudo: false
|
||||||
@@ -1,61 +0,0 @@
|
|||||||
Contributing
|
|
||||||
============
|
|
||||||
|
|
||||||
## Documentation
|
|
||||||
|
|
||||||
Every new feature and API change should be accompanied by a README additon.
|
|
||||||
|
|
||||||
## Testing
|
|
||||||
|
|
||||||
All features and bugs should have tests that verify the fix. You can run all
|
|
||||||
tests using `npm test`.
|
|
||||||
|
|
||||||
The most common type of test are tests that verify input and output of the
|
|
||||||
Uglify transforms. These tests exist in `test/compress`. New tests can be added
|
|
||||||
either to an existing file or in a new file `issue-xxx.js`.
|
|
||||||
|
|
||||||
Tests that cannot be expressed as a simple AST can be found in `test/mocha`.
|
|
||||||
|
|
||||||
## Code style
|
|
||||||
|
|
||||||
- File encoding must be `UTF-8`.
|
|
||||||
- `LF` is always used as a line ending.
|
|
||||||
- Statements end with semicolons.
|
|
||||||
- Indentation uses 4 spaces, switch `case` 2 spaces.
|
|
||||||
- Identifiers use `snake_case`.
|
|
||||||
- Strings use double quotes (`"`).
|
|
||||||
- Use a trailing comma for multiline array and object literals to minimize diffs.
|
|
||||||
- The Uglify code only uses ES5, even in the `harmony` branch.
|
|
||||||
- Line length should be at most 80 cols, except when it is easier to read a
|
|
||||||
longer line.
|
|
||||||
- If both sides of a comparison are of the same type, `==` and `!=` are used.
|
|
||||||
- Multiline conditions place `&&` and `||` first on the line.
|
|
||||||
|
|
||||||
**Example feature**
|
|
||||||
|
|
||||||
```js
|
|
||||||
OPT(AST_Debugger, function(self, compressor) {
|
|
||||||
if (compressor.option("drop_debugger"))
|
|
||||||
return make_node(AST_EmptyStatement, self);
|
|
||||||
return self;
|
|
||||||
});
|
|
||||||
```
|
|
||||||
|
|
||||||
**Example test case**
|
|
||||||
|
|
||||||
```js
|
|
||||||
drop_debugger: {
|
|
||||||
options = {
|
|
||||||
drop_debugger: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
debugger;
|
|
||||||
if (foo) debugger;
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
if (foo);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|
||||||
2
LICENSE
2
LICENSE
@@ -1,6 +1,6 @@
|
|||||||
UglifyJS is released under the BSD license:
|
UglifyJS is released under the BSD license:
|
||||||
|
|
||||||
Copyright 2012-2019 (c) Mihai Bazon <mihai.bazon@gmail.com>
|
Copyright 2012-2013 (c) Mihai Bazon <mihai.bazon@gmail.com>
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
modification, are permitted provided that the following conditions
|
modification, are permitted provided that the following conditions
|
||||||
|
|||||||
23
appveyor.yml
23
appveyor.yml
@@ -1,5 +1,24 @@
|
|||||||
build: off
|
environment:
|
||||||
|
matrix:
|
||||||
|
- nodejs_version: "0.10"
|
||||||
|
- nodejs_version: "0.12"
|
||||||
|
- nodejs_version: "4.0"
|
||||||
|
- nodejs_version: "6.0"
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
fast_finish: true
|
fast_finish: true
|
||||||
|
|
||||||
|
platform:
|
||||||
|
- x86
|
||||||
|
- x64
|
||||||
|
|
||||||
|
install:
|
||||||
|
- ps: Install-Product node $env:nodejs_version $env:platform
|
||||||
|
- npm install
|
||||||
|
|
||||||
test_script:
|
test_script:
|
||||||
- echo No longer in use
|
- node --version
|
||||||
|
- npm --version
|
||||||
|
- npm test
|
||||||
|
|
||||||
|
build: off
|
||||||
|
|||||||
77
bin/extract-props.js
Executable file
77
bin/extract-props.js
Executable file
@@ -0,0 +1,77 @@
|
|||||||
|
#! /usr/bin/env node
|
||||||
|
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
var U2 = require("../tools/node");
|
||||||
|
var fs = require("fs");
|
||||||
|
var yargs = require("yargs");
|
||||||
|
var ARGS = yargs
|
||||||
|
.describe("o", "Output file")
|
||||||
|
.argv;
|
||||||
|
var files = ARGS._.slice();
|
||||||
|
var output = {
|
||||||
|
vars: {},
|
||||||
|
props: {}
|
||||||
|
};
|
||||||
|
|
||||||
|
if (ARGS.o) try {
|
||||||
|
output = JSON.parse(fs.readFileSync(ARGS.o, "utf8"));
|
||||||
|
} catch(ex) {}
|
||||||
|
|
||||||
|
files.forEach(getProps);
|
||||||
|
|
||||||
|
if (ARGS.o) {
|
||||||
|
fs.writeFileSync(ARGS.o, JSON.stringify(output, null, 2), "utf8");
|
||||||
|
} else {
|
||||||
|
console.log("%s", JSON.stringify(output, null, 2));
|
||||||
|
}
|
||||||
|
|
||||||
|
function getProps(filename) {
|
||||||
|
var code = fs.readFileSync(filename, "utf8");
|
||||||
|
var ast = U2.parse(code);
|
||||||
|
|
||||||
|
ast.walk(new U2.TreeWalker(function(node){
|
||||||
|
if (node instanceof U2.AST_ObjectKeyVal) {
|
||||||
|
add(node.key);
|
||||||
|
}
|
||||||
|
else if (node instanceof U2.AST_ObjectProperty) {
|
||||||
|
add(node.key.name);
|
||||||
|
}
|
||||||
|
else if (node instanceof U2.AST_Dot) {
|
||||||
|
add(node.property);
|
||||||
|
}
|
||||||
|
else if (node instanceof U2.AST_Sub) {
|
||||||
|
addStrings(node.property);
|
||||||
|
}
|
||||||
|
}));
|
||||||
|
|
||||||
|
function addStrings(node) {
|
||||||
|
var out = {};
|
||||||
|
try {
|
||||||
|
(function walk(node){
|
||||||
|
node.walk(new U2.TreeWalker(function(node){
|
||||||
|
if (node instanceof U2.AST_Seq) {
|
||||||
|
walk(node.cdr);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (node instanceof U2.AST_String) {
|
||||||
|
add(node.value);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (node instanceof U2.AST_Conditional) {
|
||||||
|
walk(node.consequent);
|
||||||
|
walk(node.alternative);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
throw out;
|
||||||
|
}));
|
||||||
|
})(node);
|
||||||
|
} catch(ex) {
|
||||||
|
if (ex !== out) throw ex;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function add(name) {
|
||||||
|
output.props[name] = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
966
bin/uglifyjs
966
bin/uglifyjs
File diff suppressed because it is too large
Load Diff
452
lib/ast.js
452
lib/ast.js
@@ -44,21 +44,21 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
function DEFNODE(type, props, methods, base) {
|
function DEFNODE(type, props, methods, base) {
|
||||||
if (typeof base === "undefined") base = AST_Node;
|
if (arguments.length < 4) base = AST_Node;
|
||||||
props = props ? props.split(/\s+/) : [];
|
if (!props) props = [];
|
||||||
|
else props = props.split(/\s+/);
|
||||||
var self_props = props;
|
var self_props = props;
|
||||||
if (base && base.PROPS) props = props.concat(base.PROPS);
|
if (base && base.PROPS)
|
||||||
var code = [
|
props = props.concat(base.PROPS);
|
||||||
"return function AST_", type, "(props){",
|
var code = "return function AST_" + type + "(props){ if (props) { ";
|
||||||
"if(props){",
|
for (var i = props.length; --i >= 0;) {
|
||||||
];
|
code += "this." + props[i] + " = props." + props[i] + ";";
|
||||||
props.forEach(function(prop) {
|
}
|
||||||
code.push("this.", prop, "=props.", prop, ";");
|
|
||||||
});
|
|
||||||
var proto = base && new base;
|
var proto = base && new base;
|
||||||
if (proto && proto.initialize || methods && methods.initialize) code.push("this.initialize();");
|
if (proto && proto.initialize || (methods && methods.initialize))
|
||||||
code.push("}}");
|
code += "this.initialize();";
|
||||||
var ctor = new Function(code.join(""))();
|
code += "}}";
|
||||||
|
var ctor = new Function(code)();
|
||||||
if (proto) {
|
if (proto) {
|
||||||
ctor.prototype = proto;
|
ctor.prototype = proto;
|
||||||
ctor.BASE = base;
|
ctor.BASE = base;
|
||||||
@@ -71,11 +71,11 @@ function DEFNODE(type, props, methods, base) {
|
|||||||
if (type) {
|
if (type) {
|
||||||
ctor.prototype.TYPE = ctor.TYPE = type;
|
ctor.prototype.TYPE = ctor.TYPE = type;
|
||||||
}
|
}
|
||||||
if (methods) for (var name in methods) if (HOP(methods, name)) {
|
if (methods) for (i in methods) if (HOP(methods, i)) {
|
||||||
if (/^\$/.test(name)) {
|
if (/^\$/.test(i)) {
|
||||||
ctor[name.substr(1)] = methods[name];
|
ctor[i.substr(1)] = methods[i];
|
||||||
} else {
|
} else {
|
||||||
ctor.prototype[name] = methods[name];
|
ctor.prototype[i] = methods[i];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ctor.DEFMETHOD = function(name, method) {
|
ctor.DEFMETHOD = function(name, method) {
|
||||||
@@ -85,9 +85,9 @@ function DEFNODE(type, props, methods, base) {
|
|||||||
exports["AST_" + type] = ctor;
|
exports["AST_" + type] = ctor;
|
||||||
}
|
}
|
||||||
return ctor;
|
return ctor;
|
||||||
}
|
};
|
||||||
|
|
||||||
var AST_Token = DEFNODE("Token", "type value line col pos endline endcol endpos nlb comments_before comments_after file raw", {
|
var AST_Token = DEFNODE("Token", "type value line col pos endline endcol endpos nlb comments_before file raw", {
|
||||||
}, null);
|
}, null);
|
||||||
|
|
||||||
var AST_Node = DEFNODE("Node", "start end", {
|
var AST_Node = DEFNODE("Node", "start end", {
|
||||||
@@ -118,25 +118,11 @@ var AST_Node = DEFNODE("Node", "start end", {
|
|||||||
}
|
}
|
||||||
}, null);
|
}, null);
|
||||||
|
|
||||||
(AST_Node.log_function = function(fn, verbose) {
|
AST_Node.warn_function = null;
|
||||||
var printed = Object.create(null);
|
AST_Node.warn = function(txt, props) {
|
||||||
if (fn) {
|
if (AST_Node.warn_function)
|
||||||
AST_Node.info = verbose ? function(text, props) {
|
AST_Node.warn_function(string_template(txt, props));
|
||||||
log("INFO: " + string_template(text, props));
|
};
|
||||||
} : noop;
|
|
||||||
AST_Node.warn = function(text, props) {
|
|
||||||
log("WARN: " + string_template(text, props));
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
AST_Node.info = AST_Node.warn = noop;
|
|
||||||
}
|
|
||||||
|
|
||||||
function log(msg) {
|
|
||||||
if (printed[msg]) return;
|
|
||||||
printed[msg] = true;
|
|
||||||
fn(msg);
|
|
||||||
}
|
|
||||||
})();
|
|
||||||
|
|
||||||
/* -----[ statements ]----- */
|
/* -----[ statements ]----- */
|
||||||
|
|
||||||
@@ -148,10 +134,11 @@ var AST_Debugger = DEFNODE("Debugger", null, {
|
|||||||
$documentation: "Represents a debugger statement",
|
$documentation: "Represents a debugger statement",
|
||||||
}, AST_Statement);
|
}, AST_Statement);
|
||||||
|
|
||||||
var AST_Directive = DEFNODE("Directive", "value quote", {
|
var AST_Directive = DEFNODE("Directive", "value scope quote", {
|
||||||
$documentation: "Represents a directive, like \"use strict\";",
|
$documentation: "Represents a directive, like \"use strict\";",
|
||||||
$propdoc: {
|
$propdoc: {
|
||||||
value: "[string] The value of this directive as a plain string (it's not an AST_String!)",
|
value: "[string] The value of this directive as a plain string (it's not an AST_String!)",
|
||||||
|
scope: "[AST_Scope/S] The scope that this directive affects",
|
||||||
quote: "[string] the original quote character"
|
quote: "[string] the original quote character"
|
||||||
},
|
},
|
||||||
}, AST_Statement);
|
}, AST_Statement);
|
||||||
@@ -162,7 +149,7 @@ var AST_SimpleStatement = DEFNODE("SimpleStatement", "body", {
|
|||||||
body: "[AST_Node] an expression node (should not be instanceof AST_Statement)"
|
body: "[AST_Node] an expression node (should not be instanceof AST_Statement)"
|
||||||
},
|
},
|
||||||
_walk: function(visitor) {
|
_walk: function(visitor) {
|
||||||
return visitor._visit(this, function() {
|
return visitor._visit(this, function(){
|
||||||
this.body._walk(visitor);
|
this.body._walk(visitor);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -172,18 +159,19 @@ function walk_body(node, visitor) {
|
|||||||
var body = node.body;
|
var body = node.body;
|
||||||
if (body instanceof AST_Statement) {
|
if (body instanceof AST_Statement) {
|
||||||
body._walk(visitor);
|
body._walk(visitor);
|
||||||
} else body.forEach(function(node) {
|
}
|
||||||
node._walk(visitor);
|
else for (var i = 0, len = body.length; i < len; i++) {
|
||||||
});
|
body[i]._walk(visitor);
|
||||||
}
|
}
|
||||||
|
};
|
||||||
|
|
||||||
var AST_Block = DEFNODE("Block", "body", {
|
var AST_Block = DEFNODE("Block", "body", {
|
||||||
$documentation: "A body of statements (usually braced)",
|
$documentation: "A body of statements (usually bracketed)",
|
||||||
$propdoc: {
|
$propdoc: {
|
||||||
body: "[AST_Statement*] an array of statements"
|
body: "[AST_Statement*] an array of statements"
|
||||||
},
|
},
|
||||||
_walk: function(visitor) {
|
_walk: function(visitor) {
|
||||||
return visitor._visit(this, function() {
|
return visitor._visit(this, function(){
|
||||||
walk_body(this, visitor);
|
walk_body(this, visitor);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -194,13 +182,21 @@ var AST_BlockStatement = DEFNODE("BlockStatement", null, {
|
|||||||
}, AST_Block);
|
}, AST_Block);
|
||||||
|
|
||||||
var AST_EmptyStatement = DEFNODE("EmptyStatement", null, {
|
var AST_EmptyStatement = DEFNODE("EmptyStatement", null, {
|
||||||
$documentation: "The empty statement (empty block or simply a semicolon)"
|
$documentation: "The empty statement (empty block or simply a semicolon)",
|
||||||
|
_walk: function(visitor) {
|
||||||
|
return visitor._visit(this);
|
||||||
|
}
|
||||||
}, AST_Statement);
|
}, AST_Statement);
|
||||||
|
|
||||||
var AST_StatementWithBody = DEFNODE("StatementWithBody", "body", {
|
var AST_StatementWithBody = DEFNODE("StatementWithBody", "body", {
|
||||||
$documentation: "Base class for all statements that contain one nested body: `For`, `ForIn`, `Do`, `While`, `With`",
|
$documentation: "Base class for all statements that contain one nested body: `For`, `ForIn`, `Do`, `While`, `With`",
|
||||||
$propdoc: {
|
$propdoc: {
|
||||||
body: "[AST_Statement] the body; this should always be present, even if it's an AST_EmptyStatement"
|
body: "[AST_Statement] the body; this should always be present, even if it's an AST_EmptyStatement"
|
||||||
|
},
|
||||||
|
_walk: function(visitor) {
|
||||||
|
return visitor._visit(this, function(){
|
||||||
|
this.body._walk(visitor);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}, AST_Statement);
|
}, AST_Statement);
|
||||||
|
|
||||||
@@ -210,7 +206,7 @@ var AST_LabeledStatement = DEFNODE("LabeledStatement", "label", {
|
|||||||
label: "[AST_Label] a label definition"
|
label: "[AST_Label] a label definition"
|
||||||
},
|
},
|
||||||
_walk: function(visitor) {
|
_walk: function(visitor) {
|
||||||
return visitor._visit(this, function() {
|
return visitor._visit(this, function(){
|
||||||
this.label._walk(visitor);
|
this.label._walk(visitor);
|
||||||
this.body._walk(visitor);
|
this.body._walk(visitor);
|
||||||
});
|
});
|
||||||
@@ -221,7 +217,8 @@ var AST_LabeledStatement = DEFNODE("LabeledStatement", "label", {
|
|||||||
var label = node.label;
|
var label = node.label;
|
||||||
var def = this.label;
|
var def = this.label;
|
||||||
node.walk(new TreeWalker(function(node) {
|
node.walk(new TreeWalker(function(node) {
|
||||||
if (node instanceof AST_LoopControl && node.label && node.label.thedef === def) {
|
if (node instanceof AST_LoopControl
|
||||||
|
&& node.label && node.label.thedef === def) {
|
||||||
node.label.thedef = label;
|
node.label.thedef = label;
|
||||||
label.references.push(node);
|
label.references.push(node);
|
||||||
}
|
}
|
||||||
@@ -245,7 +242,7 @@ var AST_DWLoop = DEFNODE("DWLoop", "condition", {
|
|||||||
var AST_Do = DEFNODE("Do", null, {
|
var AST_Do = DEFNODE("Do", null, {
|
||||||
$documentation: "A `do` statement",
|
$documentation: "A `do` statement",
|
||||||
_walk: function(visitor) {
|
_walk: function(visitor) {
|
||||||
return visitor._visit(this, function() {
|
return visitor._visit(this, function(){
|
||||||
this.body._walk(visitor);
|
this.body._walk(visitor);
|
||||||
this.condition._walk(visitor);
|
this.condition._walk(visitor);
|
||||||
});
|
});
|
||||||
@@ -255,7 +252,7 @@ var AST_Do = DEFNODE("Do", null, {
|
|||||||
var AST_While = DEFNODE("While", null, {
|
var AST_While = DEFNODE("While", null, {
|
||||||
$documentation: "A `while` statement",
|
$documentation: "A `while` statement",
|
||||||
_walk: function(visitor) {
|
_walk: function(visitor) {
|
||||||
return visitor._visit(this, function() {
|
return visitor._visit(this, function(){
|
||||||
this.condition._walk(visitor);
|
this.condition._walk(visitor);
|
||||||
this.body._walk(visitor);
|
this.body._walk(visitor);
|
||||||
});
|
});
|
||||||
@@ -270,7 +267,7 @@ var AST_For = DEFNODE("For", "init condition step", {
|
|||||||
step: "[AST_Node?] the `for` update clause, or null if empty"
|
step: "[AST_Node?] the `for` update clause, or null if empty"
|
||||||
},
|
},
|
||||||
_walk: function(visitor) {
|
_walk: function(visitor) {
|
||||||
return visitor._visit(this, function() {
|
return visitor._visit(this, function(){
|
||||||
if (this.init) this.init._walk(visitor);
|
if (this.init) this.init._walk(visitor);
|
||||||
if (this.condition) this.condition._walk(visitor);
|
if (this.condition) this.condition._walk(visitor);
|
||||||
if (this.step) this.step._walk(visitor);
|
if (this.step) this.step._walk(visitor);
|
||||||
@@ -279,14 +276,15 @@ var AST_For = DEFNODE("For", "init condition step", {
|
|||||||
}
|
}
|
||||||
}, AST_IterationStatement);
|
}, AST_IterationStatement);
|
||||||
|
|
||||||
var AST_ForIn = DEFNODE("ForIn", "init object", {
|
var AST_ForIn = DEFNODE("ForIn", "init name object", {
|
||||||
$documentation: "A `for ... in` statement",
|
$documentation: "A `for ... in` statement",
|
||||||
$propdoc: {
|
$propdoc: {
|
||||||
init: "[AST_Node] the `for/in` initialization code",
|
init: "[AST_Node] the `for/in` initialization code",
|
||||||
|
name: "[AST_SymbolRef?] the loop variable, only if `init` is AST_Var",
|
||||||
object: "[AST_Node] the object that we're looping through"
|
object: "[AST_Node] the object that we're looping through"
|
||||||
},
|
},
|
||||||
_walk: function(visitor) {
|
_walk: function(visitor) {
|
||||||
return visitor._visit(this, function() {
|
return visitor._visit(this, function(){
|
||||||
this.init._walk(visitor);
|
this.init._walk(visitor);
|
||||||
this.object._walk(visitor);
|
this.object._walk(visitor);
|
||||||
this.body._walk(visitor);
|
this.body._walk(visitor);
|
||||||
@@ -300,7 +298,7 @@ var AST_With = DEFNODE("With", "expression", {
|
|||||||
expression: "[AST_Node] the `with` expression"
|
expression: "[AST_Node] the `with` expression"
|
||||||
},
|
},
|
||||||
_walk: function(visitor) {
|
_walk: function(visitor) {
|
||||||
return visitor._visit(this, function() {
|
return visitor._visit(this, function(){
|
||||||
this.expression._walk(visitor);
|
this.expression._walk(visitor);
|
||||||
this.body._walk(visitor);
|
this.body._walk(visitor);
|
||||||
});
|
});
|
||||||
@@ -309,9 +307,10 @@ var AST_With = DEFNODE("With", "expression", {
|
|||||||
|
|
||||||
/* -----[ scope and functions ]----- */
|
/* -----[ scope and functions ]----- */
|
||||||
|
|
||||||
var AST_Scope = DEFNODE("Scope", "variables functions uses_with uses_eval parent_scope enclosed cname", {
|
var AST_Scope = DEFNODE("Scope", "directives variables functions uses_with uses_eval parent_scope enclosed cname", {
|
||||||
$documentation: "Base class for all statements introducing a lexical scope",
|
$documentation: "Base class for all statements introducing a lexical scope",
|
||||||
$propdoc: {
|
$propdoc: {
|
||||||
|
directives: "[string*/S] an array of directives declared in this scope",
|
||||||
variables: "[Object/S] a map of name -> SymbolDef for all variables/functions defined in this scope",
|
variables: "[Object/S] a map of name -> SymbolDef for all variables/functions defined in this scope",
|
||||||
functions: "[Object/S] like `variables`, but only lists function declarations",
|
functions: "[Object/S] like `variables`, but only lists function declarations",
|
||||||
uses_with: "[boolean/S] tells whether this scope uses the `with` statement",
|
uses_with: "[boolean/S] tells whether this scope uses the `with` statement",
|
||||||
@@ -320,16 +319,6 @@ var AST_Scope = DEFNODE("Scope", "variables functions uses_with uses_eval parent
|
|||||||
enclosed: "[SymbolDef*/S] a list of all symbol definitions that are accessed from this scope or any subscopes",
|
enclosed: "[SymbolDef*/S] a list of all symbol definitions that are accessed from this scope or any subscopes",
|
||||||
cname: "[integer/S] current index for mangling variables (used internally by the mangler)",
|
cname: "[integer/S] current index for mangling variables (used internally by the mangler)",
|
||||||
},
|
},
|
||||||
clone: function(deep) {
|
|
||||||
var node = this._clone(deep);
|
|
||||||
if (this.variables) node.variables = this.variables.clone();
|
|
||||||
if (this.functions) node.functions = this.functions.clone();
|
|
||||||
if (this.enclosed) node.enclosed = this.enclosed.slice();
|
|
||||||
return node;
|
|
||||||
},
|
|
||||||
pinned: function() {
|
|
||||||
return this.uses_eval || this.uses_with;
|
|
||||||
}
|
|
||||||
}, AST_Block);
|
}, AST_Block);
|
||||||
|
|
||||||
var AST_Toplevel = DEFNODE("Toplevel", "globals", {
|
var AST_Toplevel = DEFNODE("Toplevel", "globals", {
|
||||||
@@ -337,46 +326,69 @@ var AST_Toplevel = DEFNODE("Toplevel", "globals", {
|
|||||||
$propdoc: {
|
$propdoc: {
|
||||||
globals: "[Object/S] a map of name -> SymbolDef for all undeclared names",
|
globals: "[Object/S] a map of name -> SymbolDef for all undeclared names",
|
||||||
},
|
},
|
||||||
wrap: function(name) {
|
wrap_enclose: function(arg_parameter_pairs) {
|
||||||
var body = this.body;
|
var self = this;
|
||||||
return parse([
|
var args = [];
|
||||||
"(function(exports){'$ORIG';})(typeof ",
|
var parameters = [];
|
||||||
name,
|
|
||||||
"=='undefined'?(",
|
arg_parameter_pairs.forEach(function(pair) {
|
||||||
name,
|
var splitAt = pair.lastIndexOf(":");
|
||||||
"={}):",
|
|
||||||
name,
|
args.push(pair.substr(0, splitAt));
|
||||||
");"
|
parameters.push(pair.substr(splitAt + 1));
|
||||||
].join(""), {
|
});
|
||||||
filename: "wrap=" + JSON.stringify(name)
|
|
||||||
}).transform(new TreeTransformer(function(node) {
|
var wrapped_tl = "(function(" + parameters.join(",") + "){ '$ORIG'; })(" + args.join(",") + ")";
|
||||||
|
wrapped_tl = parse(wrapped_tl);
|
||||||
|
wrapped_tl = wrapped_tl.transform(new TreeTransformer(function before(node){
|
||||||
if (node instanceof AST_Directive && node.value == "$ORIG") {
|
if (node instanceof AST_Directive && node.value == "$ORIG") {
|
||||||
return MAP.splice(body);
|
return MAP.splice(self.body);
|
||||||
}
|
}
|
||||||
}));
|
}));
|
||||||
|
return wrapped_tl;
|
||||||
},
|
},
|
||||||
enclose: function(args_values) {
|
wrap_commonjs: function(name, export_all) {
|
||||||
if (typeof args_values != "string") args_values = "";
|
var self = this;
|
||||||
var index = args_values.indexOf(":");
|
var to_export = [];
|
||||||
if (index < 0) index = args_values.length;
|
if (export_all) {
|
||||||
var body = this.body;
|
self.figure_out_scope();
|
||||||
return parse([
|
self.walk(new TreeWalker(function(node){
|
||||||
"(function(",
|
if (node instanceof AST_SymbolDeclaration && node.definition().global) {
|
||||||
args_values.slice(0, index),
|
if (!find_if(function(n){ return n.name == node.name }, to_export))
|
||||||
'){"$ORIG"})(',
|
to_export.push(node);
|
||||||
args_values.slice(index + 1),
|
}
|
||||||
")"
|
}));
|
||||||
].join(""), {
|
}
|
||||||
filename: "enclose=" + JSON.stringify(args_values)
|
var wrapped_tl = "(function(exports, global){ '$ORIG'; '$EXPORTS'; global['" + name + "'] = exports; }({}, (function(){return this}())))";
|
||||||
}).transform(new TreeTransformer(function(node) {
|
wrapped_tl = parse(wrapped_tl);
|
||||||
if (node instanceof AST_Directive && node.value == "$ORIG") {
|
wrapped_tl = wrapped_tl.transform(new TreeTransformer(function before(node){
|
||||||
return MAP.splice(body);
|
if (node instanceof AST_Directive) {
|
||||||
|
switch (node.value) {
|
||||||
|
case "$ORIG":
|
||||||
|
return MAP.splice(self.body);
|
||||||
|
case "$EXPORTS":
|
||||||
|
var body = [];
|
||||||
|
to_export.forEach(function(sym){
|
||||||
|
body.push(new AST_SimpleStatement({
|
||||||
|
body: new AST_Assign({
|
||||||
|
left: new AST_Sub({
|
||||||
|
expression: new AST_SymbolRef({ name: "exports" }),
|
||||||
|
property: new AST_String({ value: sym.name }),
|
||||||
|
}),
|
||||||
|
operator: "=",
|
||||||
|
right: new AST_SymbolRef(sym),
|
||||||
|
}),
|
||||||
|
}));
|
||||||
|
});
|
||||||
|
return MAP.splice(body);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}));
|
}));
|
||||||
|
return wrapped_tl;
|
||||||
}
|
}
|
||||||
}, AST_Scope);
|
}, AST_Scope);
|
||||||
|
|
||||||
var AST_Lambda = DEFNODE("Lambda", "name argnames uses_arguments length_read", {
|
var AST_Lambda = DEFNODE("Lambda", "name argnames uses_arguments", {
|
||||||
$documentation: "Base class for functions",
|
$documentation: "Base class for functions",
|
||||||
$propdoc: {
|
$propdoc: {
|
||||||
name: "[AST_SymbolDeclaration?] the name of this function",
|
name: "[AST_SymbolDeclaration?] the name of this function",
|
||||||
@@ -384,11 +396,12 @@ var AST_Lambda = DEFNODE("Lambda", "name argnames uses_arguments length_read", {
|
|||||||
uses_arguments: "[boolean/S] tells whether this function accesses the arguments array"
|
uses_arguments: "[boolean/S] tells whether this function accesses the arguments array"
|
||||||
},
|
},
|
||||||
_walk: function(visitor) {
|
_walk: function(visitor) {
|
||||||
return visitor._visit(this, function() {
|
return visitor._visit(this, function(){
|
||||||
if (this.name) this.name._walk(visitor);
|
if (this.name) this.name._walk(visitor);
|
||||||
this.argnames.forEach(function(argname) {
|
var argnames = this.argnames;
|
||||||
argname._walk(visitor);
|
for (var i = 0, len = argnames.length; i < len; i++) {
|
||||||
});
|
argnames[i]._walk(visitor);
|
||||||
|
}
|
||||||
walk_body(this, visitor);
|
walk_body(this, visitor);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -398,11 +411,11 @@ var AST_Accessor = DEFNODE("Accessor", null, {
|
|||||||
$documentation: "A setter/getter function. The `name` property is always null."
|
$documentation: "A setter/getter function. The `name` property is always null."
|
||||||
}, AST_Lambda);
|
}, AST_Lambda);
|
||||||
|
|
||||||
var AST_Function = DEFNODE("Function", "inlined", {
|
var AST_Function = DEFNODE("Function", null, {
|
||||||
$documentation: "A function expression"
|
$documentation: "A function expression"
|
||||||
}, AST_Lambda);
|
}, AST_Lambda);
|
||||||
|
|
||||||
var AST_Defun = DEFNODE("Defun", "inlined", {
|
var AST_Defun = DEFNODE("Defun", null, {
|
||||||
$documentation: "A function definition"
|
$documentation: "A function definition"
|
||||||
}, AST_Lambda);
|
}, AST_Lambda);
|
||||||
|
|
||||||
@@ -418,7 +431,7 @@ var AST_Exit = DEFNODE("Exit", "value", {
|
|||||||
value: "[AST_Node?] the value returned or thrown by this statement; could be null for AST_Return"
|
value: "[AST_Node?] the value returned or thrown by this statement; could be null for AST_Return"
|
||||||
},
|
},
|
||||||
_walk: function(visitor) {
|
_walk: function(visitor) {
|
||||||
return visitor._visit(this, this.value && function() {
|
return visitor._visit(this, this.value && function(){
|
||||||
this.value._walk(visitor);
|
this.value._walk(visitor);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -438,7 +451,7 @@ var AST_LoopControl = DEFNODE("LoopControl", "label", {
|
|||||||
label: "[AST_LabelRef?] the label, or null if none",
|
label: "[AST_LabelRef?] the label, or null if none",
|
||||||
},
|
},
|
||||||
_walk: function(visitor) {
|
_walk: function(visitor) {
|
||||||
return visitor._visit(this, this.label && function() {
|
return visitor._visit(this, this.label && function(){
|
||||||
this.label._walk(visitor);
|
this.label._walk(visitor);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -461,7 +474,7 @@ var AST_If = DEFNODE("If", "condition alternative", {
|
|||||||
alternative: "[AST_Statement?] the `else` part, or null if not present"
|
alternative: "[AST_Statement?] the `else` part, or null if not present"
|
||||||
},
|
},
|
||||||
_walk: function(visitor) {
|
_walk: function(visitor) {
|
||||||
return visitor._visit(this, function() {
|
return visitor._visit(this, function(){
|
||||||
this.condition._walk(visitor);
|
this.condition._walk(visitor);
|
||||||
this.body._walk(visitor);
|
this.body._walk(visitor);
|
||||||
if (this.alternative) this.alternative._walk(visitor);
|
if (this.alternative) this.alternative._walk(visitor);
|
||||||
@@ -477,7 +490,7 @@ var AST_Switch = DEFNODE("Switch", "expression", {
|
|||||||
expression: "[AST_Node] the `switch` “discriminant”"
|
expression: "[AST_Node] the `switch` “discriminant”"
|
||||||
},
|
},
|
||||||
_walk: function(visitor) {
|
_walk: function(visitor) {
|
||||||
return visitor._visit(this, function() {
|
return visitor._visit(this, function(){
|
||||||
this.expression._walk(visitor);
|
this.expression._walk(visitor);
|
||||||
walk_body(this, visitor);
|
walk_body(this, visitor);
|
||||||
});
|
});
|
||||||
@@ -498,7 +511,7 @@ var AST_Case = DEFNODE("Case", "expression", {
|
|||||||
expression: "[AST_Node] the `case` expression"
|
expression: "[AST_Node] the `case` expression"
|
||||||
},
|
},
|
||||||
_walk: function(visitor) {
|
_walk: function(visitor) {
|
||||||
return visitor._visit(this, function() {
|
return visitor._visit(this, function(){
|
||||||
this.expression._walk(visitor);
|
this.expression._walk(visitor);
|
||||||
walk_body(this, visitor);
|
walk_body(this, visitor);
|
||||||
});
|
});
|
||||||
@@ -514,7 +527,7 @@ var AST_Try = DEFNODE("Try", "bcatch bfinally", {
|
|||||||
bfinally: "[AST_Finally?] the finally block, or null if not present"
|
bfinally: "[AST_Finally?] the finally block, or null if not present"
|
||||||
},
|
},
|
||||||
_walk: function(visitor) {
|
_walk: function(visitor) {
|
||||||
return visitor._visit(this, function() {
|
return visitor._visit(this, function(){
|
||||||
walk_body(this, visitor);
|
walk_body(this, visitor);
|
||||||
if (this.bcatch) this.bcatch._walk(visitor);
|
if (this.bcatch) this.bcatch._walk(visitor);
|
||||||
if (this.bfinally) this.bfinally._walk(visitor);
|
if (this.bfinally) this.bfinally._walk(visitor);
|
||||||
@@ -528,7 +541,7 @@ var AST_Catch = DEFNODE("Catch", "argname", {
|
|||||||
argname: "[AST_SymbolCatch] symbol for the exception"
|
argname: "[AST_SymbolCatch] symbol for the exception"
|
||||||
},
|
},
|
||||||
_walk: function(visitor) {
|
_walk: function(visitor) {
|
||||||
return visitor._visit(this, function() {
|
return visitor._visit(this, function(){
|
||||||
this.argname._walk(visitor);
|
this.argname._walk(visitor);
|
||||||
walk_body(this, visitor);
|
walk_body(this, visitor);
|
||||||
});
|
});
|
||||||
@@ -539,18 +552,19 @@ var AST_Finally = DEFNODE("Finally", null, {
|
|||||||
$documentation: "A `finally` node; only makes sense as part of a `try` statement"
|
$documentation: "A `finally` node; only makes sense as part of a `try` statement"
|
||||||
}, AST_Block);
|
}, AST_Block);
|
||||||
|
|
||||||
/* -----[ VAR ]----- */
|
/* -----[ VAR/CONST ]----- */
|
||||||
|
|
||||||
var AST_Definitions = DEFNODE("Definitions", "definitions", {
|
var AST_Definitions = DEFNODE("Definitions", "definitions", {
|
||||||
$documentation: "Base class for `var` nodes (variable declarations/initializations)",
|
$documentation: "Base class for `var` or `const` nodes (variable declarations/initializations)",
|
||||||
$propdoc: {
|
$propdoc: {
|
||||||
definitions: "[AST_VarDef*] array of variable definitions"
|
definitions: "[AST_VarDef*] array of variable definitions"
|
||||||
},
|
},
|
||||||
_walk: function(visitor) {
|
_walk: function(visitor) {
|
||||||
return visitor._visit(this, function() {
|
return visitor._visit(this, function(){
|
||||||
this.definitions.forEach(function(defn) {
|
var definitions = this.definitions;
|
||||||
defn._walk(visitor);
|
for (var i = 0, len = definitions.length; i < len; i++) {
|
||||||
});
|
definitions[i]._walk(visitor);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}, AST_Statement);
|
}, AST_Statement);
|
||||||
@@ -559,14 +573,18 @@ var AST_Var = DEFNODE("Var", null, {
|
|||||||
$documentation: "A `var` statement"
|
$documentation: "A `var` statement"
|
||||||
}, AST_Definitions);
|
}, AST_Definitions);
|
||||||
|
|
||||||
|
var AST_Const = DEFNODE("Const", null, {
|
||||||
|
$documentation: "A `const` statement"
|
||||||
|
}, AST_Definitions);
|
||||||
|
|
||||||
var AST_VarDef = DEFNODE("VarDef", "name value", {
|
var AST_VarDef = DEFNODE("VarDef", "name value", {
|
||||||
$documentation: "A variable declaration; only appears in a AST_Definitions node",
|
$documentation: "A variable declaration; only appears in a AST_Definitions node",
|
||||||
$propdoc: {
|
$propdoc: {
|
||||||
name: "[AST_SymbolVar] name of the variable",
|
name: "[AST_SymbolVar|AST_SymbolConst] name of the variable",
|
||||||
value: "[AST_Node?] initializer, or null of there's no initializer"
|
value: "[AST_Node?] initializer, or null of there's no initializer"
|
||||||
},
|
},
|
||||||
_walk: function(visitor) {
|
_walk: function(visitor) {
|
||||||
return visitor._visit(this, function() {
|
return visitor._visit(this, function(){
|
||||||
this.name._walk(visitor);
|
this.name._walk(visitor);
|
||||||
if (this.value) this.value._walk(visitor);
|
if (this.value) this.value._walk(visitor);
|
||||||
});
|
});
|
||||||
@@ -582,11 +600,12 @@ var AST_Call = DEFNODE("Call", "expression args", {
|
|||||||
args: "[AST_Node*] array of arguments"
|
args: "[AST_Node*] array of arguments"
|
||||||
},
|
},
|
||||||
_walk: function(visitor) {
|
_walk: function(visitor) {
|
||||||
return visitor._visit(this, function() {
|
return visitor._visit(this, function(){
|
||||||
this.expression._walk(visitor);
|
this.expression._walk(visitor);
|
||||||
this.args.forEach(function(node) {
|
var args = this.args;
|
||||||
node._walk(visitor);
|
for (var i = 0, len = args.length; i < len; i++) {
|
||||||
});
|
args[i]._walk(visitor);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@@ -595,16 +614,68 @@ var AST_New = DEFNODE("New", null, {
|
|||||||
$documentation: "An object instantiation. Derives from a function call since it has exactly the same properties"
|
$documentation: "An object instantiation. Derives from a function call since it has exactly the same properties"
|
||||||
}, AST_Call);
|
}, AST_Call);
|
||||||
|
|
||||||
var AST_Sequence = DEFNODE("Sequence", "expressions", {
|
var AST_Seq = DEFNODE("Seq", "car cdr", {
|
||||||
$documentation: "A sequence expression (comma-separated expressions)",
|
$documentation: "A sequence expression (two comma-separated expressions)",
|
||||||
$propdoc: {
|
$propdoc: {
|
||||||
expressions: "[AST_Node*] array of expressions (at least two)"
|
car: "[AST_Node] first element in sequence",
|
||||||
|
cdr: "[AST_Node] second element in sequence"
|
||||||
|
},
|
||||||
|
$cons: function(x, y) {
|
||||||
|
var seq = new AST_Seq(x);
|
||||||
|
seq.car = x;
|
||||||
|
seq.cdr = y;
|
||||||
|
return seq;
|
||||||
|
},
|
||||||
|
$from_array: function(array) {
|
||||||
|
if (array.length == 0) return null;
|
||||||
|
if (array.length == 1) return array[0].clone();
|
||||||
|
var list = null;
|
||||||
|
for (var i = array.length; --i >= 0;) {
|
||||||
|
list = AST_Seq.cons(array[i], list);
|
||||||
|
}
|
||||||
|
var p = list;
|
||||||
|
while (p) {
|
||||||
|
if (p.cdr && !p.cdr.cdr) {
|
||||||
|
p.cdr = p.cdr.car;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
p = p.cdr;
|
||||||
|
}
|
||||||
|
return list;
|
||||||
|
},
|
||||||
|
to_array: function() {
|
||||||
|
var p = this, a = [];
|
||||||
|
while (p) {
|
||||||
|
a.push(p.car);
|
||||||
|
if (p.cdr && !(p.cdr instanceof AST_Seq)) {
|
||||||
|
a.push(p.cdr);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
p = p.cdr;
|
||||||
|
}
|
||||||
|
return a;
|
||||||
|
},
|
||||||
|
add: function(node) {
|
||||||
|
var p = this;
|
||||||
|
while (p) {
|
||||||
|
if (!(p.cdr instanceof AST_Seq)) {
|
||||||
|
var cell = AST_Seq.cons(p.cdr, node);
|
||||||
|
return p.cdr = cell;
|
||||||
|
}
|
||||||
|
p = p.cdr;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
len: function() {
|
||||||
|
if (this.cdr instanceof AST_Seq) {
|
||||||
|
return this.cdr.len() + 1;
|
||||||
|
} else {
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
},
|
},
|
||||||
_walk: function(visitor) {
|
_walk: function(visitor) {
|
||||||
return visitor._visit(this, function() {
|
return visitor._visit(this, function(){
|
||||||
this.expressions.forEach(function(node) {
|
this.car._walk(visitor);
|
||||||
node._walk(visitor);
|
if (this.cdr) this.cdr._walk(visitor);
|
||||||
});
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@@ -614,25 +685,13 @@ var AST_PropAccess = DEFNODE("PropAccess", "expression property", {
|
|||||||
$propdoc: {
|
$propdoc: {
|
||||||
expression: "[AST_Node] the “container” expression",
|
expression: "[AST_Node] the “container” expression",
|
||||||
property: "[AST_Node|string] the property to access. For AST_Dot this is always a plain string, while for AST_Sub it's an arbitrary AST_Node"
|
property: "[AST_Node|string] the property to access. For AST_Dot this is always a plain string, while for AST_Sub it's an arbitrary AST_Node"
|
||||||
},
|
|
||||||
getProperty: function() {
|
|
||||||
var p = this.property;
|
|
||||||
if (p instanceof AST_Constant) {
|
|
||||||
return p.getValue();
|
|
||||||
}
|
|
||||||
if (p instanceof AST_UnaryPrefix
|
|
||||||
&& p.operator == "void"
|
|
||||||
&& p.expression instanceof AST_Constant) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
return p;
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
var AST_Dot = DEFNODE("Dot", null, {
|
var AST_Dot = DEFNODE("Dot", null, {
|
||||||
$documentation: "A dotted property access expression",
|
$documentation: "A dotted property access expression",
|
||||||
_walk: function(visitor) {
|
_walk: function(visitor) {
|
||||||
return visitor._visit(this, function() {
|
return visitor._visit(this, function(){
|
||||||
this.expression._walk(visitor);
|
this.expression._walk(visitor);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -641,7 +700,7 @@ var AST_Dot = DEFNODE("Dot", null, {
|
|||||||
var AST_Sub = DEFNODE("Sub", null, {
|
var AST_Sub = DEFNODE("Sub", null, {
|
||||||
$documentation: "Index-style property access, i.e. `a[\"foo\"]`",
|
$documentation: "Index-style property access, i.e. `a[\"foo\"]`",
|
||||||
_walk: function(visitor) {
|
_walk: function(visitor) {
|
||||||
return visitor._visit(this, function() {
|
return visitor._visit(this, function(){
|
||||||
this.expression._walk(visitor);
|
this.expression._walk(visitor);
|
||||||
this.property._walk(visitor);
|
this.property._walk(visitor);
|
||||||
});
|
});
|
||||||
@@ -655,7 +714,7 @@ var AST_Unary = DEFNODE("Unary", "operator expression", {
|
|||||||
expression: "[AST_Node] expression that this unary operator applies to"
|
expression: "[AST_Node] expression that this unary operator applies to"
|
||||||
},
|
},
|
||||||
_walk: function(visitor) {
|
_walk: function(visitor) {
|
||||||
return visitor._visit(this, function() {
|
return visitor._visit(this, function(){
|
||||||
this.expression._walk(visitor);
|
this.expression._walk(visitor);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -669,7 +728,7 @@ var AST_UnaryPostfix = DEFNODE("UnaryPostfix", null, {
|
|||||||
$documentation: "Unary postfix expression, i.e. `i++`"
|
$documentation: "Unary postfix expression, i.e. `i++`"
|
||||||
}, AST_Unary);
|
}, AST_Unary);
|
||||||
|
|
||||||
var AST_Binary = DEFNODE("Binary", "operator left right", {
|
var AST_Binary = DEFNODE("Binary", "left operator right", {
|
||||||
$documentation: "Binary expression, i.e. `a + b`",
|
$documentation: "Binary expression, i.e. `a + b`",
|
||||||
$propdoc: {
|
$propdoc: {
|
||||||
left: "[AST_Node] left-hand side expression",
|
left: "[AST_Node] left-hand side expression",
|
||||||
@@ -677,7 +736,7 @@ var AST_Binary = DEFNODE("Binary", "operator left right", {
|
|||||||
right: "[AST_Node] right-hand side expression"
|
right: "[AST_Node] right-hand side expression"
|
||||||
},
|
},
|
||||||
_walk: function(visitor) {
|
_walk: function(visitor) {
|
||||||
return visitor._visit(this, function() {
|
return visitor._visit(this, function(){
|
||||||
this.left._walk(visitor);
|
this.left._walk(visitor);
|
||||||
this.right._walk(visitor);
|
this.right._walk(visitor);
|
||||||
});
|
});
|
||||||
@@ -692,7 +751,7 @@ var AST_Conditional = DEFNODE("Conditional", "condition consequent alternative",
|
|||||||
alternative: "[AST_Node]"
|
alternative: "[AST_Node]"
|
||||||
},
|
},
|
||||||
_walk: function(visitor) {
|
_walk: function(visitor) {
|
||||||
return visitor._visit(this, function() {
|
return visitor._visit(this, function(){
|
||||||
this.condition._walk(visitor);
|
this.condition._walk(visitor);
|
||||||
this.consequent._walk(visitor);
|
this.consequent._walk(visitor);
|
||||||
this.alternative._walk(visitor);
|
this.alternative._walk(visitor);
|
||||||
@@ -712,10 +771,11 @@ var AST_Array = DEFNODE("Array", "elements", {
|
|||||||
elements: "[AST_Node*] array of elements"
|
elements: "[AST_Node*] array of elements"
|
||||||
},
|
},
|
||||||
_walk: function(visitor) {
|
_walk: function(visitor) {
|
||||||
return visitor._visit(this, function() {
|
return visitor._visit(this, function(){
|
||||||
this.elements.forEach(function(element) {
|
var elements = this.elements;
|
||||||
element._walk(visitor);
|
for (var i = 0, len = elements.length; i < len; i++) {
|
||||||
});
|
elements[i]._walk(visitor);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@@ -726,10 +786,11 @@ var AST_Object = DEFNODE("Object", "properties", {
|
|||||||
properties: "[AST_ObjectProperty*] array of properties"
|
properties: "[AST_ObjectProperty*] array of properties"
|
||||||
},
|
},
|
||||||
_walk: function(visitor) {
|
_walk: function(visitor) {
|
||||||
return visitor._visit(this, function() {
|
return visitor._visit(this, function(){
|
||||||
this.properties.forEach(function(prop) {
|
var properties = this.properties;
|
||||||
prop._walk(visitor);
|
for (var i = 0, len = properties.length; i < len; i++) {
|
||||||
});
|
properties[i]._walk(visitor);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@@ -737,11 +798,11 @@ var AST_Object = DEFNODE("Object", "properties", {
|
|||||||
var AST_ObjectProperty = DEFNODE("ObjectProperty", "key value", {
|
var AST_ObjectProperty = DEFNODE("ObjectProperty", "key value", {
|
||||||
$documentation: "Base class for literal object properties",
|
$documentation: "Base class for literal object properties",
|
||||||
$propdoc: {
|
$propdoc: {
|
||||||
key: "[string|AST_SymbolAccessor] property name. For ObjectKeyVal this is a string. For getters and setters this is an AST_SymbolAccessor.",
|
key: "[string] the property name converted to a string for ObjectKeyVal. For setters and getters this is an AST_SymbolAccessor.",
|
||||||
value: "[AST_Node] property value. For getters and setters this is an AST_Accessor."
|
value: "[AST_Node] property value. For setters and getters this is an AST_Accessor."
|
||||||
},
|
},
|
||||||
_walk: function(visitor) {
|
_walk: function(visitor) {
|
||||||
return visitor._visit(this, function() {
|
return visitor._visit(this, function(){
|
||||||
this.value._walk(visitor);
|
this.value._walk(visitor);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -776,13 +837,17 @@ var AST_SymbolAccessor = DEFNODE("SymbolAccessor", null, {
|
|||||||
}, AST_Symbol);
|
}, AST_Symbol);
|
||||||
|
|
||||||
var AST_SymbolDeclaration = DEFNODE("SymbolDeclaration", "init", {
|
var AST_SymbolDeclaration = DEFNODE("SymbolDeclaration", "init", {
|
||||||
$documentation: "A declaration symbol (symbol in var, function name or argument, symbol in catch)",
|
$documentation: "A declaration symbol (symbol in var/const, function name or argument, symbol in catch)",
|
||||||
}, AST_Symbol);
|
}, AST_Symbol);
|
||||||
|
|
||||||
var AST_SymbolVar = DEFNODE("SymbolVar", null, {
|
var AST_SymbolVar = DEFNODE("SymbolVar", null, {
|
||||||
$documentation: "Symbol defining a variable",
|
$documentation: "Symbol defining a variable",
|
||||||
}, AST_SymbolDeclaration);
|
}, AST_SymbolDeclaration);
|
||||||
|
|
||||||
|
var AST_SymbolConst = DEFNODE("SymbolConst", null, {
|
||||||
|
$documentation: "A constant declaration"
|
||||||
|
}, AST_SymbolDeclaration);
|
||||||
|
|
||||||
var AST_SymbolFunarg = DEFNODE("SymbolFunarg", null, {
|
var AST_SymbolFunarg = DEFNODE("SymbolFunarg", null, {
|
||||||
$documentation: "Symbol naming a function argument",
|
$documentation: "Symbol naming a function argument",
|
||||||
}, AST_SymbolVar);
|
}, AST_SymbolVar);
|
||||||
@@ -810,7 +875,7 @@ var AST_Label = DEFNODE("Label", "references", {
|
|||||||
}
|
}
|
||||||
}, AST_Symbol);
|
}, AST_Symbol);
|
||||||
|
|
||||||
var AST_SymbolRef = DEFNODE("SymbolRef", "fixed", {
|
var AST_SymbolRef = DEFNODE("SymbolRef", null, {
|
||||||
$documentation: "Reference to some symbol (not definition/declaration)",
|
$documentation: "Reference to some symbol (not definition/declaration)",
|
||||||
}, AST_Symbol);
|
}, AST_Symbol);
|
||||||
|
|
||||||
@@ -837,10 +902,11 @@ var AST_String = DEFNODE("String", "value quote", {
|
|||||||
}
|
}
|
||||||
}, AST_Constant);
|
}, AST_Constant);
|
||||||
|
|
||||||
var AST_Number = DEFNODE("Number", "value", {
|
var AST_Number = DEFNODE("Number", "value literal", {
|
||||||
$documentation: "A number literal",
|
$documentation: "A number literal",
|
||||||
$propdoc: {
|
$propdoc: {
|
||||||
value: "[number] the numeric value",
|
value: "[number] the numeric value",
|
||||||
|
literal: "[string] numeric value as string (optional)"
|
||||||
}
|
}
|
||||||
}, AST_Constant);
|
}, AST_Constant);
|
||||||
|
|
||||||
@@ -867,12 +933,12 @@ var AST_NaN = DEFNODE("NaN", null, {
|
|||||||
|
|
||||||
var AST_Undefined = DEFNODE("Undefined", null, {
|
var AST_Undefined = DEFNODE("Undefined", null, {
|
||||||
$documentation: "The `undefined` value",
|
$documentation: "The `undefined` value",
|
||||||
value: function(){}()
|
value: (function(){}())
|
||||||
}, AST_Atom);
|
}, AST_Atom);
|
||||||
|
|
||||||
var AST_Hole = DEFNODE("Hole", null, {
|
var AST_Hole = DEFNODE("Hole", null, {
|
||||||
$documentation: "A hole in an array",
|
$documentation: "A hole in an array",
|
||||||
value: function(){}()
|
value: (function(){}())
|
||||||
}, AST_Atom);
|
}, AST_Atom);
|
||||||
|
|
||||||
var AST_Infinity = DEFNODE("Infinity", null, {
|
var AST_Infinity = DEFNODE("Infinity", null, {
|
||||||
@@ -900,23 +966,23 @@ function TreeWalker(callback) {
|
|||||||
this.visit = callback;
|
this.visit = callback;
|
||||||
this.stack = [];
|
this.stack = [];
|
||||||
this.directives = Object.create(null);
|
this.directives = Object.create(null);
|
||||||
}
|
};
|
||||||
TreeWalker.prototype = {
|
TreeWalker.prototype = {
|
||||||
_visit: function(node, descend) {
|
_visit: function(node, descend) {
|
||||||
this.push(node);
|
this.push(node);
|
||||||
var ret = this.visit(node, descend ? function() {
|
var ret = this.visit(node, descend ? function(){
|
||||||
descend.call(node);
|
descend.call(node);
|
||||||
} : noop);
|
} : noop);
|
||||||
if (!ret && descend) {
|
if (!ret && descend) {
|
||||||
descend.call(node);
|
descend.call(node);
|
||||||
}
|
}
|
||||||
this.pop();
|
this.pop(node);
|
||||||
return ret;
|
return ret;
|
||||||
},
|
},
|
||||||
parent: function(n) {
|
parent: function(n) {
|
||||||
return this.stack[this.stack.length - 2 - (n || 0)];
|
return this.stack[this.stack.length - 2 - (n || 0)];
|
||||||
},
|
},
|
||||||
push: function(node) {
|
push: function (node) {
|
||||||
if (node instanceof AST_Lambda) {
|
if (node instanceof AST_Lambda) {
|
||||||
this.directives = Object.create(this.directives);
|
this.directives = Object.create(this.directives);
|
||||||
} else if (node instanceof AST_Directive && !this.directives[node.value]) {
|
} else if (node instanceof AST_Directive && !this.directives[node.value]) {
|
||||||
@@ -924,8 +990,9 @@ TreeWalker.prototype = {
|
|||||||
}
|
}
|
||||||
this.stack.push(node);
|
this.stack.push(node);
|
||||||
},
|
},
|
||||||
pop: function() {
|
pop: function(node) {
|
||||||
if (this.stack.pop() instanceof AST_Lambda) {
|
this.stack.pop();
|
||||||
|
if (node instanceof AST_Lambda) {
|
||||||
this.directives = Object.getPrototypeOf(this.directives);
|
this.directives = Object.getPrototypeOf(this.directives);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -951,6 +1018,24 @@ TreeWalker.prototype = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
in_boolean_context: function() {
|
||||||
|
var stack = this.stack;
|
||||||
|
var i = stack.length, self = stack[--i];
|
||||||
|
while (i > 0) {
|
||||||
|
var p = stack[--i];
|
||||||
|
if ((p instanceof AST_If && p.condition === self) ||
|
||||||
|
(p instanceof AST_Conditional && p.condition === self) ||
|
||||||
|
(p instanceof AST_DWLoop && p.condition === self) ||
|
||||||
|
(p instanceof AST_For && p.condition === self) ||
|
||||||
|
(p instanceof AST_UnaryPrefix && p.operator == "!" && p.expression === self))
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (!(p instanceof AST_Binary && (p.operator == "&&" || p.operator == "||")))
|
||||||
|
return false;
|
||||||
|
self = p;
|
||||||
|
}
|
||||||
|
},
|
||||||
loopcontrol_target: function(node) {
|
loopcontrol_target: function(node) {
|
||||||
var stack = this.stack;
|
var stack = this.stack;
|
||||||
if (node.label) for (var i = stack.length; --i >= 0;) {
|
if (node.label) for (var i = stack.length; --i >= 0;) {
|
||||||
@@ -963,34 +1048,5 @@ TreeWalker.prototype = {
|
|||||||
|| node instanceof AST_Break && x instanceof AST_Switch)
|
|| node instanceof AST_Break && x instanceof AST_Switch)
|
||||||
return x;
|
return x;
|
||||||
}
|
}
|
||||||
},
|
|
||||||
in_boolean_context: function() {
|
|
||||||
var self = this.self();
|
|
||||||
for (var i = 0, p; p = this.parent(i); i++) {
|
|
||||||
if (p instanceof AST_SimpleStatement
|
|
||||||
|| p instanceof AST_Conditional && p.condition === self
|
|
||||||
|| p instanceof AST_DWLoop && p.condition === self
|
|
||||||
|| p instanceof AST_For && p.condition === self
|
|
||||||
|| p instanceof AST_If && p.condition === self
|
|
||||||
|| p instanceof AST_UnaryPrefix && p.operator == "!" && p.expression === self) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
if (p instanceof AST_Binary && (p.operator == "&&" || p.operator == "||")
|
|
||||||
|| p instanceof AST_Conditional
|
|
||||||
|| p.tail_node() === self) {
|
|
||||||
self = p;
|
|
||||||
} else if (p instanceof AST_Return) {
|
|
||||||
var fn;
|
|
||||||
do {
|
|
||||||
fn = this.parent(++i);
|
|
||||||
if (!fn) return false;
|
|
||||||
} while (!(fn instanceof AST_Lambda));
|
|
||||||
if (fn.name) return false;
|
|
||||||
self = this.parent(++i);
|
|
||||||
if (!self || self.TYPE != "Call" || self.expression !== fn) return false;
|
|
||||||
} else {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
8190
lib/compress.js
8190
lib/compress.js
File diff suppressed because it is too large
Load Diff
264
lib/minify.js
264
lib/minify.js
@@ -1,264 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
|
|
||||||
var to_ascii, to_base64;
|
|
||||||
if (typeof Buffer == "undefined") {
|
|
||||||
to_ascii = atob;
|
|
||||||
to_base64 = btoa;
|
|
||||||
} else if (typeof Buffer.alloc == "undefined") {
|
|
||||||
to_ascii = function(b64) {
|
|
||||||
return new Buffer(b64, "base64").toString();
|
|
||||||
};
|
|
||||||
to_base64 = function(str) {
|
|
||||||
return new Buffer(str).toString("base64");
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
to_ascii = function(b64) {
|
|
||||||
return Buffer.from(b64, "base64").toString();
|
|
||||||
};
|
|
||||||
to_base64 = function(str) {
|
|
||||||
return Buffer.from(str).toString("base64");
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
function read_source_map(name, toplevel) {
|
|
||||||
var comments = toplevel.end.comments_after;
|
|
||||||
for (var i = comments.length; --i >= 0;) {
|
|
||||||
var comment = comments[i];
|
|
||||||
if (comment.type != "comment1") break;
|
|
||||||
var match = /^# ([^\s=]+)=(\S+)\s*$/.exec(comment.value);
|
|
||||||
if (!match) break;
|
|
||||||
if (match[1] == "sourceMappingURL") {
|
|
||||||
match = /^data:application\/json(;.*?)?;base64,(\S+)$/.exec(match[2]);
|
|
||||||
if (!match) break;
|
|
||||||
return to_ascii(match[2]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
AST_Node.warn("inline source map not found: " + name);
|
|
||||||
}
|
|
||||||
|
|
||||||
function parse_source_map(content) {
|
|
||||||
try {
|
|
||||||
return JSON.parse(content);
|
|
||||||
} catch (ex) {
|
|
||||||
throw new Error("invalid input source map: " + content);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function set_shorthand(name, options, keys) {
|
|
||||||
if (options[name]) {
|
|
||||||
keys.forEach(function(key) {
|
|
||||||
if (options[key]) {
|
|
||||||
if (typeof options[key] != "object") options[key] = {};
|
|
||||||
if (!(name in options[key])) options[key][name] = options[name];
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function init_cache(cache) {
|
|
||||||
if (!cache) return;
|
|
||||||
if (!("props" in cache)) {
|
|
||||||
cache.props = new Dictionary();
|
|
||||||
} else if (!(cache.props instanceof Dictionary)) {
|
|
||||||
cache.props = Dictionary.fromObject(cache.props);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function to_json(cache) {
|
|
||||||
return {
|
|
||||||
props: cache.props.toObject()
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
function minify(files, options) {
|
|
||||||
try {
|
|
||||||
options = defaults(options, {
|
|
||||||
compress: {},
|
|
||||||
enclose: false,
|
|
||||||
ie8: false,
|
|
||||||
keep_fnames: false,
|
|
||||||
mangle: {},
|
|
||||||
nameCache: null,
|
|
||||||
output: {},
|
|
||||||
parse: {},
|
|
||||||
rename: undefined,
|
|
||||||
sourceMap: false,
|
|
||||||
timings: false,
|
|
||||||
toplevel: false,
|
|
||||||
warnings: false,
|
|
||||||
wrap: false,
|
|
||||||
}, true);
|
|
||||||
var timings = options.timings && {
|
|
||||||
start: Date.now()
|
|
||||||
};
|
|
||||||
if (options.rename === undefined) {
|
|
||||||
options.rename = options.compress && options.mangle;
|
|
||||||
}
|
|
||||||
set_shorthand("ie8", options, [ "compress", "mangle", "output" ]);
|
|
||||||
set_shorthand("keep_fnames", options, [ "compress", "mangle" ]);
|
|
||||||
set_shorthand("toplevel", options, [ "compress", "mangle" ]);
|
|
||||||
var quoted_props;
|
|
||||||
if (options.mangle) {
|
|
||||||
options.mangle = defaults(options.mangle, {
|
|
||||||
cache: options.nameCache && (options.nameCache.vars || {}),
|
|
||||||
eval: false,
|
|
||||||
ie8: false,
|
|
||||||
keep_fnames: false,
|
|
||||||
properties: false,
|
|
||||||
reserved: [],
|
|
||||||
toplevel: false,
|
|
||||||
}, true);
|
|
||||||
if (options.mangle.properties) {
|
|
||||||
if (typeof options.mangle.properties != "object") {
|
|
||||||
options.mangle.properties = {};
|
|
||||||
}
|
|
||||||
if (options.mangle.properties.keep_quoted) {
|
|
||||||
quoted_props = options.mangle.properties.reserved;
|
|
||||||
if (!Array.isArray(quoted_props)) quoted_props = [];
|
|
||||||
options.mangle.properties.reserved = quoted_props;
|
|
||||||
}
|
|
||||||
if (options.nameCache && !("cache" in options.mangle.properties)) {
|
|
||||||
options.mangle.properties.cache = options.nameCache.props || {};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
init_cache(options.mangle.cache);
|
|
||||||
init_cache(options.mangle.properties.cache);
|
|
||||||
}
|
|
||||||
if (options.sourceMap) {
|
|
||||||
options.sourceMap = defaults(options.sourceMap, {
|
|
||||||
content: null,
|
|
||||||
filename: null,
|
|
||||||
includeSources: false,
|
|
||||||
root: null,
|
|
||||||
url: null,
|
|
||||||
}, true);
|
|
||||||
}
|
|
||||||
var warnings = [];
|
|
||||||
if (options.warnings) AST_Node.log_function(function(warning) {
|
|
||||||
warnings.push(warning);
|
|
||||||
}, options.warnings == "verbose");
|
|
||||||
if (timings) timings.parse = Date.now();
|
|
||||||
var source_maps, toplevel;
|
|
||||||
if (files instanceof AST_Toplevel) {
|
|
||||||
toplevel = files;
|
|
||||||
} else {
|
|
||||||
if (typeof files == "string") {
|
|
||||||
files = [ files ];
|
|
||||||
}
|
|
||||||
options.parse = options.parse || {};
|
|
||||||
options.parse.toplevel = null;
|
|
||||||
var source_map_content = options.sourceMap && options.sourceMap.content;
|
|
||||||
if (typeof source_map_content == "string" && source_map_content != "inline") {
|
|
||||||
source_map_content = parse_source_map(source_map_content);
|
|
||||||
}
|
|
||||||
source_maps = source_map_content && Object.create(null);
|
|
||||||
for (var name in files) if (HOP(files, name)) {
|
|
||||||
options.parse.filename = name;
|
|
||||||
options.parse.toplevel = toplevel = parse(files[name], options.parse);
|
|
||||||
if (source_maps) {
|
|
||||||
if (source_map_content == "inline") {
|
|
||||||
var inlined_content = read_source_map(name, toplevel);
|
|
||||||
if (inlined_content) {
|
|
||||||
source_maps[name] = parse_source_map(inlined_content);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
source_maps[name] = source_map_content;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (quoted_props) {
|
|
||||||
reserve_quoted_keys(toplevel, quoted_props);
|
|
||||||
}
|
|
||||||
[ "enclose", "wrap" ].forEach(function(action) {
|
|
||||||
var option = options[action];
|
|
||||||
if (!option) return;
|
|
||||||
var orig = toplevel.print_to_string().slice(0, -1);
|
|
||||||
toplevel = toplevel[action](option);
|
|
||||||
files[toplevel.start.file] = toplevel.print_to_string().replace(orig, "");
|
|
||||||
});
|
|
||||||
if (timings) timings.rename = Date.now();
|
|
||||||
if (options.rename) {
|
|
||||||
toplevel.figure_out_scope(options.mangle);
|
|
||||||
toplevel.expand_names(options.mangle);
|
|
||||||
}
|
|
||||||
if (timings) timings.compress = Date.now();
|
|
||||||
if (options.compress) toplevel = new Compressor(options.compress).compress(toplevel);
|
|
||||||
if (timings) timings.scope = Date.now();
|
|
||||||
if (options.mangle) toplevel.figure_out_scope(options.mangle);
|
|
||||||
if (timings) timings.mangle = Date.now();
|
|
||||||
if (options.mangle) {
|
|
||||||
toplevel.compute_char_frequency(options.mangle);
|
|
||||||
toplevel.mangle_names(options.mangle);
|
|
||||||
}
|
|
||||||
if (timings) timings.properties = Date.now();
|
|
||||||
if (options.mangle && options.mangle.properties) {
|
|
||||||
toplevel = mangle_properties(toplevel, options.mangle.properties);
|
|
||||||
}
|
|
||||||
if (timings) timings.output = Date.now();
|
|
||||||
var result = {};
|
|
||||||
if (options.output.ast) {
|
|
||||||
result.ast = toplevel;
|
|
||||||
}
|
|
||||||
if (!HOP(options.output, "code") || options.output.code) {
|
|
||||||
if (options.sourceMap) {
|
|
||||||
options.output.source_map = SourceMap({
|
|
||||||
file: options.sourceMap.filename,
|
|
||||||
orig: source_maps,
|
|
||||||
root: options.sourceMap.root
|
|
||||||
});
|
|
||||||
if (options.sourceMap.includeSources) {
|
|
||||||
if (files instanceof AST_Toplevel) {
|
|
||||||
throw new Error("original source content unavailable");
|
|
||||||
} else for (var name in files) if (HOP(files, name)) {
|
|
||||||
options.output.source_map.get().setSourceContent(name, files[name]);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
options.output.source_map.get()._sourcesContents = null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
delete options.output.ast;
|
|
||||||
delete options.output.code;
|
|
||||||
var stream = OutputStream(options.output);
|
|
||||||
toplevel.print(stream);
|
|
||||||
result.code = stream.get();
|
|
||||||
if (options.sourceMap) {
|
|
||||||
result.map = options.output.source_map.toString();
|
|
||||||
var url = options.sourceMap.url;
|
|
||||||
if (url) {
|
|
||||||
result.code = result.code.replace(/\n\/\/# sourceMappingURL=\S+\s*$/, "");
|
|
||||||
if (url == "inline") {
|
|
||||||
result.code += "\n//# sourceMappingURL=data:application/json;charset=utf-8;base64," + to_base64(result.map);
|
|
||||||
} else {
|
|
||||||
result.code += "\n//# sourceMappingURL=" + url;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (options.nameCache && options.mangle) {
|
|
||||||
if (options.mangle.cache) options.nameCache.vars = to_json(options.mangle.cache);
|
|
||||||
if (options.mangle.properties && options.mangle.properties.cache) {
|
|
||||||
options.nameCache.props = to_json(options.mangle.properties.cache);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (timings) {
|
|
||||||
timings.end = Date.now();
|
|
||||||
result.timings = {
|
|
||||||
parse: 1e-3 * (timings.rename - timings.parse),
|
|
||||||
rename: 1e-3 * (timings.compress - timings.rename),
|
|
||||||
compress: 1e-3 * (timings.scope - timings.compress),
|
|
||||||
scope: 1e-3 * (timings.mangle - timings.scope),
|
|
||||||
mangle: 1e-3 * (timings.properties - timings.mangle),
|
|
||||||
properties: 1e-3 * (timings.output - timings.properties),
|
|
||||||
output: 1e-3 * (timings.end - timings.output),
|
|
||||||
total: 1e-3 * (timings.end - timings.start)
|
|
||||||
};
|
|
||||||
}
|
|
||||||
if (warnings.length) {
|
|
||||||
result.warnings = warnings;
|
|
||||||
}
|
|
||||||
return result;
|
|
||||||
} catch (ex) {
|
|
||||||
return { error: ex };
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -43,9 +43,11 @@
|
|||||||
|
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
(function() {
|
(function(){
|
||||||
function normalize_directives(body) {
|
|
||||||
|
var normalize_directives = function(body) {
|
||||||
var in_directive = true;
|
var in_directive = true;
|
||||||
|
|
||||||
for (var i = 0; i < body.length; i++) {
|
for (var i = 0; i < body.length; i++) {
|
||||||
if (in_directive && body[i] instanceof AST_Statement && body[i].body instanceof AST_String) {
|
if (in_directive && body[i] instanceof AST_Statement && body[i].body instanceof AST_String) {
|
||||||
body[i] = new AST_Directive({
|
body[i] = new AST_Directive({
|
||||||
@@ -57,8 +59,9 @@
|
|||||||
in_directive = false;
|
in_directive = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return body;
|
return body;
|
||||||
}
|
};
|
||||||
|
|
||||||
var MOZ_TO_ME = {
|
var MOZ_TO_ME = {
|
||||||
Program: function(M) {
|
Program: function(M) {
|
||||||
@@ -126,7 +129,7 @@
|
|||||||
return new AST_Array({
|
return new AST_Array({
|
||||||
start : my_start_token(M),
|
start : my_start_token(M),
|
||||||
end : my_end_token(M),
|
end : my_end_token(M),
|
||||||
elements : M.elements.map(function(elem) {
|
elements : M.elements.map(function(elem){
|
||||||
return elem === null ? new AST_Hole() : from_moz(elem);
|
return elem === null ? new AST_Hole() : from_moz(elem);
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
@@ -135,18 +138,14 @@
|
|||||||
return new AST_Object({
|
return new AST_Object({
|
||||||
start : my_start_token(M),
|
start : my_start_token(M),
|
||||||
end : my_end_token(M),
|
end : my_end_token(M),
|
||||||
properties : M.properties.map(function(prop) {
|
properties : M.properties.map(function(prop){
|
||||||
prop.type = "Property";
|
prop.type = "Property";
|
||||||
return from_moz(prop)
|
return from_moz(prop)
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
SequenceExpression: function(M) {
|
SequenceExpression: function(M) {
|
||||||
return new AST_Sequence({
|
return AST_Seq.from_array(M.expressions.map(from_moz));
|
||||||
start : my_start_token(M),
|
|
||||||
end : my_end_token(M),
|
|
||||||
expressions: M.expressions.map(from_moz)
|
|
||||||
});
|
|
||||||
},
|
},
|
||||||
MemberExpression: function(M) {
|
MemberExpression: function(M) {
|
||||||
return new (M.computed ? AST_Sub : AST_Dot)({
|
return new (M.computed ? AST_Sub : AST_Dot)({
|
||||||
@@ -165,7 +164,7 @@
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
VariableDeclaration: function(M) {
|
VariableDeclaration: function(M) {
|
||||||
return new AST_Var({
|
return new (M.kind === "const" ? AST_Const : AST_Var)({
|
||||||
start : my_start_token(M),
|
start : my_start_token(M),
|
||||||
end : my_end_token(M),
|
end : my_end_token(M),
|
||||||
definitions : M.declarations.map(from_moz)
|
definitions : M.declarations.map(from_moz)
|
||||||
@@ -177,17 +176,6 @@
|
|||||||
end : my_end_token(M)
|
end : my_end_token(M)
|
||||||
};
|
};
|
||||||
if (val === null) return new AST_Null(args);
|
if (val === null) return new AST_Null(args);
|
||||||
var rx = M.regex;
|
|
||||||
if (rx && rx.pattern) {
|
|
||||||
// RegExpLiteral as per ESTree AST spec
|
|
||||||
args.value = new RegExp(rx.pattern, rx.flags);
|
|
||||||
args.value.raw_source = rx.pattern;
|
|
||||||
return new AST_RegExp(args);
|
|
||||||
} else if (rx) {
|
|
||||||
// support legacy RegExp
|
|
||||||
args.value = M.regex && M.raw ? M.raw : val;
|
|
||||||
return new AST_RegExp(args);
|
|
||||||
}
|
|
||||||
switch (typeof val) {
|
switch (typeof val) {
|
||||||
case "string":
|
case "string":
|
||||||
args.value = val;
|
args.value = val;
|
||||||
@@ -197,12 +185,22 @@
|
|||||||
return new AST_Number(args);
|
return new AST_Number(args);
|
||||||
case "boolean":
|
case "boolean":
|
||||||
return new (val ? AST_True : AST_False)(args);
|
return new (val ? AST_True : AST_False)(args);
|
||||||
|
default:
|
||||||
|
var rx = M.regex;
|
||||||
|
if (rx && rx.pattern) {
|
||||||
|
// RegExpLiteral as per ESTree AST spec
|
||||||
|
args.value = new RegExp(rx.pattern, rx.flags).toString();
|
||||||
|
} else {
|
||||||
|
// support legacy RegExp
|
||||||
|
args.value = M.regex && M.raw ? M.raw : val;
|
||||||
|
}
|
||||||
|
return new AST_RegExp(args);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
Identifier: function(M) {
|
Identifier: function(M) {
|
||||||
var p = FROM_MOZ_STACK[FROM_MOZ_STACK.length - 2];
|
var p = FROM_MOZ_STACK[FROM_MOZ_STACK.length - 2];
|
||||||
return new ( p.type == "LabeledStatement" ? AST_Label
|
return new ( p.type == "LabeledStatement" ? AST_Label
|
||||||
: p.type == "VariableDeclarator" && p.id === M ? AST_SymbolVar
|
: p.type == "VariableDeclarator" && p.id === M ? (p.kind == "const" ? AST_SymbolConst : AST_SymbolVar)
|
||||||
: p.type == "FunctionExpression" ? (p.id === M ? AST_SymbolLambda : AST_SymbolFunarg)
|
: p.type == "FunctionExpression" ? (p.id === M ? AST_SymbolLambda : AST_SymbolFunarg)
|
||||||
: p.type == "FunctionDeclaration" ? (p.id === M ? AST_SymbolDefun : AST_SymbolFunarg)
|
: p.type == "FunctionDeclaration" ? (p.id === M ? AST_SymbolDefun : AST_SymbolFunarg)
|
||||||
: p.type == "CatchClause" ? AST_SymbolCatch
|
: p.type == "CatchClause" ? AST_SymbolCatch
|
||||||
@@ -322,15 +320,15 @@
|
|||||||
def_to_moz(AST_Definitions, function To_Moz_VariableDeclaration(M) {
|
def_to_moz(AST_Definitions, function To_Moz_VariableDeclaration(M) {
|
||||||
return {
|
return {
|
||||||
type: "VariableDeclaration",
|
type: "VariableDeclaration",
|
||||||
kind: "var",
|
kind: M instanceof AST_Const ? "const" : "var",
|
||||||
declarations: M.definitions.map(to_moz)
|
declarations: M.definitions.map(to_moz)
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
def_to_moz(AST_Sequence, function To_Moz_SequenceExpression(M) {
|
def_to_moz(AST_Seq, function To_Moz_SequenceExpression(M) {
|
||||||
return {
|
return {
|
||||||
type: "SequenceExpression",
|
type: "SequenceExpression",
|
||||||
expressions: M.expressions.map(to_moz)
|
expressions: M.to_array().map(to_moz)
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -403,20 +401,19 @@
|
|||||||
var def = M.definition();
|
var def = M.definition();
|
||||||
return {
|
return {
|
||||||
type: "Identifier",
|
type: "Identifier",
|
||||||
name: def && def.mangled_name || M.name
|
name: def ? def.mangled_name || def.name : M.name
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
def_to_moz(AST_RegExp, function To_Moz_RegExpLiteral(M) {
|
def_to_moz(AST_RegExp, function To_Moz_RegExpLiteral(M) {
|
||||||
var flags = M.value.toString().match(/[gimuy]*$/)[0];
|
var value = M.value;
|
||||||
var value = "/" + M.value.raw_source + "/" + flags;
|
|
||||||
return {
|
return {
|
||||||
type: "Literal",
|
type: "Literal",
|
||||||
value: value,
|
value: value,
|
||||||
raw: value,
|
raw: value.toString(),
|
||||||
regex: {
|
regex: {
|
||||||
pattern: M.value.raw_source,
|
pattern: value.source,
|
||||||
flags: flags
|
flags: value.toString().match(/[gimuy]*$/)[0]
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
@@ -477,7 +474,7 @@
|
|||||||
endpos : range ? range[0] : moznode.start,
|
endpos : range ? range[0] : moznode.start,
|
||||||
raw : raw_token(moznode),
|
raw : raw_token(moznode),
|
||||||
});
|
});
|
||||||
}
|
};
|
||||||
|
|
||||||
function my_end_token(moznode) {
|
function my_end_token(moznode) {
|
||||||
var loc = moznode.loc, end = loc && loc.end;
|
var loc = moznode.loc, end = loc && loc.end;
|
||||||
@@ -492,7 +489,7 @@
|
|||||||
endpos : range ? range[1] : moznode.end,
|
endpos : range ? range[1] : moznode.end,
|
||||||
raw : raw_token(moznode),
|
raw : raw_token(moznode),
|
||||||
});
|
});
|
||||||
}
|
};
|
||||||
|
|
||||||
function map(moztype, mytype, propmap) {
|
function map(moztype, mytype, propmap) {
|
||||||
var moz_to_me = "function From_Moz_" + moztype + "(M){\n";
|
var moz_to_me = "function From_Moz_" + moztype + "(M){\n";
|
||||||
@@ -504,7 +501,7 @@
|
|||||||
me_to_moz += "return {\n" +
|
me_to_moz += "return {\n" +
|
||||||
"type: " + JSON.stringify(moztype);
|
"type: " + JSON.stringify(moztype);
|
||||||
|
|
||||||
if (propmap) propmap.split(/\s*,\s*/).forEach(function(prop) {
|
if (propmap) propmap.split(/\s*,\s*/).forEach(function(prop){
|
||||||
var m = /([a-z0-9$_]+)(=|@|>|%)([a-z0-9$_]+)/i.exec(prop);
|
var m = /([a-z0-9$_]+)(=|@|>|%)([a-z0-9$_]+)/i.exec(prop);
|
||||||
if (!m) throw new Error("Can't understand property map: " + prop);
|
if (!m) throw new Error("Can't understand property map: " + prop);
|
||||||
var moz = m[1], how = m[2], my = m[3];
|
var moz = m[1], how = m[2], my = m[3];
|
||||||
@@ -547,7 +544,7 @@
|
|||||||
);
|
);
|
||||||
MOZ_TO_ME[moztype] = moz_to_me;
|
MOZ_TO_ME[moztype] = moz_to_me;
|
||||||
def_to_moz(mytype, me_to_moz);
|
def_to_moz(mytype, me_to_moz);
|
||||||
}
|
};
|
||||||
|
|
||||||
var FROM_MOZ_STACK = null;
|
var FROM_MOZ_STACK = null;
|
||||||
|
|
||||||
@@ -556,28 +553,13 @@
|
|||||||
var ret = node != null ? MOZ_TO_ME[node.type](node) : null;
|
var ret = node != null ? MOZ_TO_ME[node.type](node) : null;
|
||||||
FROM_MOZ_STACK.pop();
|
FROM_MOZ_STACK.pop();
|
||||||
return ret;
|
return ret;
|
||||||
}
|
};
|
||||||
|
|
||||||
AST_Node.from_mozilla_ast = function(node) {
|
AST_Node.from_mozilla_ast = function(node){
|
||||||
var save_stack = FROM_MOZ_STACK;
|
var save_stack = FROM_MOZ_STACK;
|
||||||
FROM_MOZ_STACK = [];
|
FROM_MOZ_STACK = [];
|
||||||
var ast = from_moz(node);
|
var ast = from_moz(node);
|
||||||
FROM_MOZ_STACK = save_stack;
|
FROM_MOZ_STACK = save_stack;
|
||||||
ast.walk(new TreeWalker(function(node) {
|
|
||||||
if (node instanceof AST_LabelRef) {
|
|
||||||
for (var level = 0, parent; parent = this.parent(level); level++) {
|
|
||||||
if (parent instanceof AST_Scope) break;
|
|
||||||
if (parent instanceof AST_LabeledStatement && parent.label.name == node.name) {
|
|
||||||
node.thedef = parent.label;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!node.thedef) {
|
|
||||||
var s = node.start;
|
|
||||||
js_error("Undefined label " + node.name, s.file, s.line, s.col, s.pos);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}));
|
|
||||||
return ast;
|
return ast;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -597,24 +579,24 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
return moznode;
|
return moznode;
|
||||||
}
|
};
|
||||||
|
|
||||||
function def_to_moz(mytype, handler) {
|
function def_to_moz(mytype, handler) {
|
||||||
mytype.DEFMETHOD("to_mozilla_ast", function() {
|
mytype.DEFMETHOD("to_mozilla_ast", function() {
|
||||||
return set_moz_loc(this, handler(this));
|
return set_moz_loc(this, handler(this));
|
||||||
});
|
});
|
||||||
}
|
};
|
||||||
|
|
||||||
function to_moz(node) {
|
function to_moz(node) {
|
||||||
return node != null ? node.to_mozilla_ast() : null;
|
return node != null ? node.to_mozilla_ast() : null;
|
||||||
}
|
};
|
||||||
|
|
||||||
function to_moz_block(node) {
|
function to_moz_block(node) {
|
||||||
return {
|
return {
|
||||||
type: "BlockStatement",
|
type: "BlockStatement",
|
||||||
body: node.body.map(to_moz)
|
body: node.body.map(to_moz)
|
||||||
};
|
};
|
||||||
}
|
};
|
||||||
|
|
||||||
function to_moz_scope(type, node) {
|
function to_moz_scope(type, node) {
|
||||||
var body = node.body.map(to_moz);
|
var body = node.body.map(to_moz);
|
||||||
@@ -625,5 +607,5 @@
|
|||||||
type: type,
|
type: type,
|
||||||
body: body
|
body: body
|
||||||
};
|
};
|
||||||
}
|
};
|
||||||
})();
|
})();
|
||||||
|
|||||||
1142
lib/output.js
1142
lib/output.js
File diff suppressed because it is too large
Load Diff
649
lib/parse.js
649
lib/parse.js
File diff suppressed because it is too large
Load Diff
@@ -43,137 +43,115 @@
|
|||||||
|
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
function find_builtins(reserved) {
|
function find_builtins() {
|
||||||
// NaN will be included due to Number.NaN
|
// NaN will be included due to Number.NaN
|
||||||
[
|
var a = [
|
||||||
"null",
|
"null",
|
||||||
"true",
|
"true",
|
||||||
"false",
|
"false",
|
||||||
"Infinity",
|
"Infinity",
|
||||||
"-Infinity",
|
"-Infinity",
|
||||||
"undefined",
|
"undefined",
|
||||||
].forEach(add);
|
];
|
||||||
[
|
[ Object, Array, Function, Number,
|
||||||
Array,
|
String, Boolean, Error, Math,
|
||||||
Boolean,
|
Date, RegExp
|
||||||
Date,
|
].forEach(function(ctor){
|
||||||
Error,
|
|
||||||
Function,
|
|
||||||
Math,
|
|
||||||
Number,
|
|
||||||
Object,
|
|
||||||
RegExp,
|
|
||||||
String,
|
|
||||||
].forEach(function(ctor) {
|
|
||||||
Object.getOwnPropertyNames(ctor).map(add);
|
Object.getOwnPropertyNames(ctor).map(add);
|
||||||
if (ctor.prototype) {
|
if (ctor.prototype) {
|
||||||
Object.getOwnPropertyNames(ctor.prototype).map(add);
|
Object.getOwnPropertyNames(ctor.prototype).map(add);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
function add(name) {
|
function add(name) {
|
||||||
push_uniq(reserved, name);
|
push_uniq(a, name);
|
||||||
}
|
}
|
||||||
}
|
return a;
|
||||||
|
|
||||||
function reserve_quoted_keys(ast, reserved) {
|
|
||||||
ast.walk(new TreeWalker(function(node) {
|
|
||||||
if (node instanceof AST_ObjectKeyVal && node.quote) {
|
|
||||||
add(node.key);
|
|
||||||
} else if (node instanceof AST_Sub) {
|
|
||||||
addStrings(node.property, add);
|
|
||||||
}
|
|
||||||
}));
|
|
||||||
|
|
||||||
function add(name) {
|
|
||||||
push_uniq(reserved, name);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function addStrings(node, add) {
|
|
||||||
node.walk(new TreeWalker(function(node) {
|
|
||||||
if (node instanceof AST_Sequence) {
|
|
||||||
addStrings(node.tail_node(), add);
|
|
||||||
} else if (node instanceof AST_String) {
|
|
||||||
add(node.value);
|
|
||||||
} else if (node instanceof AST_Conditional) {
|
|
||||||
addStrings(node.consequent, add);
|
|
||||||
addStrings(node.alternative, add);
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function mangle_properties(ast, options) {
|
function mangle_properties(ast, options) {
|
||||||
options = defaults(options, {
|
options = defaults(options, {
|
||||||
builtins: false,
|
|
||||||
cache: null,
|
cache: null,
|
||||||
debug: false,
|
debug: false,
|
||||||
keep_quoted: false,
|
ignore_quoted: false,
|
||||||
only_cache: false,
|
only_cache: false,
|
||||||
regex: null,
|
regex: null,
|
||||||
reserved: null,
|
reserved: null,
|
||||||
}, true);
|
});
|
||||||
|
|
||||||
var reserved = options.reserved;
|
var reserved = options.reserved;
|
||||||
if (!Array.isArray(reserved)) reserved = [];
|
if (reserved == null)
|
||||||
if (!options.builtins) find_builtins(reserved);
|
reserved = find_builtins();
|
||||||
|
|
||||||
var cname = -1;
|
var cache = options.cache;
|
||||||
var cache;
|
if (cache == null) {
|
||||||
if (options.cache) {
|
cache = {
|
||||||
cache = options.cache.props;
|
cname: -1,
|
||||||
cache.each(function(mangled_name) {
|
props: new Dictionary()
|
||||||
push_uniq(reserved, mangled_name);
|
};
|
||||||
});
|
|
||||||
} else {
|
|
||||||
cache = new Dictionary();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var regex = options.regex;
|
var regex = options.regex;
|
||||||
|
var ignore_quoted = options.ignore_quoted;
|
||||||
|
|
||||||
// note debug is either false (disabled), or a string of the debug suffix to use (enabled).
|
// note debug is either false (disabled), or a string of the debug suffix to use (enabled).
|
||||||
// note debug may be enabled as an empty string, which is falsey. Also treat passing 'true'
|
// note debug may be enabled as an empty string, which is falsey. Also treat passing 'true'
|
||||||
// the same as passing an empty string.
|
// the same as passing an empty string.
|
||||||
var debug = options.debug !== false;
|
var debug = (options.debug !== false);
|
||||||
var debug_suffix;
|
var debug_name_suffix;
|
||||||
if (debug) debug_suffix = options.debug === true ? "" : options.debug;
|
if (debug) {
|
||||||
|
debug_name_suffix = (options.debug === true ? "" : options.debug);
|
||||||
|
}
|
||||||
|
|
||||||
var names_to_mangle = [];
|
var names_to_mangle = [];
|
||||||
var unmangleable = [];
|
var unmangleable = [];
|
||||||
|
var ignored = {};
|
||||||
|
|
||||||
// step 1: find candidates to mangle
|
// step 1: find candidates to mangle
|
||||||
ast.walk(new TreeWalker(function(node) {
|
ast.walk(new TreeWalker(function(node){
|
||||||
if (node instanceof AST_ObjectKeyVal) {
|
if (node instanceof AST_ObjectKeyVal) {
|
||||||
add(node.key);
|
add(node.key, ignore_quoted && node.quote);
|
||||||
} else if (node instanceof AST_ObjectProperty) {
|
}
|
||||||
|
else if (node instanceof AST_ObjectProperty) {
|
||||||
// setter or getter, since KeyVal is handled above
|
// setter or getter, since KeyVal is handled above
|
||||||
add(node.key.name);
|
add(node.key.name);
|
||||||
} else if (node instanceof AST_Dot) {
|
}
|
||||||
|
else if (node instanceof AST_Dot) {
|
||||||
add(node.property);
|
add(node.property);
|
||||||
} else if (node instanceof AST_Sub) {
|
}
|
||||||
addStrings(node.property, add);
|
else if (node instanceof AST_Sub) {
|
||||||
} else if (node instanceof AST_Call
|
addStrings(node.property, ignore_quoted);
|
||||||
&& node.expression.print_to_string() == "Object.defineProperty") {
|
|
||||||
addStrings(node.args[1], add);
|
|
||||||
}
|
}
|
||||||
}));
|
}));
|
||||||
|
|
||||||
// step 2: transform the tree, renaming properties
|
// step 2: transform the tree, renaming properties
|
||||||
return ast.transform(new TreeTransformer(function(node) {
|
return ast.transform(new TreeTransformer(function(node){
|
||||||
if (node instanceof AST_ObjectKeyVal) {
|
if (node instanceof AST_ObjectKeyVal) {
|
||||||
node.key = mangle(node.key);
|
if (!(ignore_quoted && node.quote))
|
||||||
} else if (node instanceof AST_ObjectProperty) {
|
node.key = mangle(node.key);
|
||||||
|
}
|
||||||
|
else if (node instanceof AST_ObjectProperty) {
|
||||||
// setter or getter
|
// setter or getter
|
||||||
node.key.name = mangle(node.key.name);
|
node.key.name = mangle(node.key.name);
|
||||||
} else if (node instanceof AST_Dot) {
|
|
||||||
node.property = mangle(node.property);
|
|
||||||
} else if (!options.keep_quoted && node instanceof AST_Sub) {
|
|
||||||
node.property = mangleStrings(node.property);
|
|
||||||
} else if (node instanceof AST_Call
|
|
||||||
&& node.expression.print_to_string() == "Object.defineProperty") {
|
|
||||||
node.args[1] = mangleStrings(node.args[1]);
|
|
||||||
}
|
}
|
||||||
|
else if (node instanceof AST_Dot) {
|
||||||
|
node.property = mangle(node.property);
|
||||||
|
}
|
||||||
|
else if (node instanceof AST_Sub) {
|
||||||
|
if (!ignore_quoted)
|
||||||
|
node.property = mangleStrings(node.property);
|
||||||
|
}
|
||||||
|
// else if (node instanceof AST_String) {
|
||||||
|
// if (should_mangle(node.value)) {
|
||||||
|
// AST_Node.warn(
|
||||||
|
// "Found \"{prop}\" property candidate for mangling in an arbitrary string [{file}:{line},{col}]", {
|
||||||
|
// file : node.start.file,
|
||||||
|
// line : node.start.line,
|
||||||
|
// col : node.start.col,
|
||||||
|
// prop : node.value
|
||||||
|
// }
|
||||||
|
// );
|
||||||
|
// }
|
||||||
|
// }
|
||||||
}));
|
}));
|
||||||
|
|
||||||
// only function declarations after this line
|
// only function declarations after this line
|
||||||
@@ -181,54 +159,106 @@ function mangle_properties(ast, options) {
|
|||||||
function can_mangle(name) {
|
function can_mangle(name) {
|
||||||
if (unmangleable.indexOf(name) >= 0) return false;
|
if (unmangleable.indexOf(name) >= 0) return false;
|
||||||
if (reserved.indexOf(name) >= 0) return false;
|
if (reserved.indexOf(name) >= 0) return false;
|
||||||
if (options.only_cache) return cache.has(name);
|
if (options.only_cache) {
|
||||||
|
return cache.props.has(name);
|
||||||
|
}
|
||||||
if (/^-?[0-9]+(\.[0-9]+)?(e[+-][0-9]+)?$/.test(name)) return false;
|
if (/^-?[0-9]+(\.[0-9]+)?(e[+-][0-9]+)?$/.test(name)) return false;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
function should_mangle(name) {
|
function should_mangle(name) {
|
||||||
|
if (ignore_quoted && name in ignored) return false;
|
||||||
if (regex && !regex.test(name)) return false;
|
if (regex && !regex.test(name)) return false;
|
||||||
if (reserved.indexOf(name) >= 0) return false;
|
if (reserved.indexOf(name) >= 0) return false;
|
||||||
return cache.has(name) || names_to_mangle.indexOf(name) >= 0;
|
return cache.props.has(name)
|
||||||
|
|| names_to_mangle.indexOf(name) >= 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
function add(name) {
|
function add(name, ignore) {
|
||||||
if (can_mangle(name)) push_uniq(names_to_mangle, name);
|
if (ignore) {
|
||||||
if (!should_mangle(name)) push_uniq(unmangleable, name);
|
ignored[name] = true;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (can_mangle(name))
|
||||||
|
push_uniq(names_to_mangle, name);
|
||||||
|
|
||||||
|
if (!should_mangle(name)) {
|
||||||
|
push_uniq(unmangleable, name);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function mangle(name) {
|
function mangle(name) {
|
||||||
if (!should_mangle(name)) {
|
if (!should_mangle(name)) {
|
||||||
return name;
|
return name;
|
||||||
}
|
}
|
||||||
var mangled = cache.get(name);
|
|
||||||
|
var mangled = cache.props.get(name);
|
||||||
if (!mangled) {
|
if (!mangled) {
|
||||||
if (debug) {
|
if (debug) {
|
||||||
// debug mode: use a prefix and suffix to preserve readability, e.g. o.foo -> o._$foo$NNN_.
|
// debug mode: use a prefix and suffix to preserve readability, e.g. o.foo -> o._$foo$NNN_.
|
||||||
var debug_mangled = "_$" + name + "$" + debug_suffix + "_";
|
var debug_mangled = "_$" + name + "$" + debug_name_suffix + "_";
|
||||||
if (can_mangle(debug_mangled)) mangled = debug_mangled;
|
|
||||||
|
if (can_mangle(debug_mangled) && !(ignore_quoted && debug_mangled in ignored)) {
|
||||||
|
mangled = debug_mangled;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// either debug mode is off, or it is on and we could not use the mangled name
|
// either debug mode is off, or it is on and we could not use the mangled name
|
||||||
if (!mangled) do {
|
if (!mangled) {
|
||||||
mangled = base54(++cname);
|
// note can_mangle() does not check if the name collides with the 'ignored' set
|
||||||
} while (!can_mangle(mangled));
|
// (filled with quoted properties when ignore_quoted set). Make sure we add this
|
||||||
cache.set(name, mangled);
|
// check so we don't collide with a quoted name.
|
||||||
|
do {
|
||||||
|
mangled = base54(++cache.cname);
|
||||||
|
} while (!can_mangle(mangled) || (ignore_quoted && mangled in ignored));
|
||||||
|
}
|
||||||
|
|
||||||
|
cache.props.set(name, mangled);
|
||||||
}
|
}
|
||||||
return mangled;
|
return mangled;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function addStrings(node, ignore) {
|
||||||
|
var out = {};
|
||||||
|
try {
|
||||||
|
(function walk(node){
|
||||||
|
node.walk(new TreeWalker(function(node){
|
||||||
|
if (node instanceof AST_Seq) {
|
||||||
|
walk(node.cdr);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (node instanceof AST_String) {
|
||||||
|
add(node.value, ignore);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (node instanceof AST_Conditional) {
|
||||||
|
walk(node.consequent);
|
||||||
|
walk(node.alternative);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
throw out;
|
||||||
|
}));
|
||||||
|
})(node);
|
||||||
|
} catch(ex) {
|
||||||
|
if (ex !== out) throw ex;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function mangleStrings(node) {
|
function mangleStrings(node) {
|
||||||
return node.transform(new TreeTransformer(function(node) {
|
return node.transform(new TreeTransformer(function(node){
|
||||||
if (node instanceof AST_Sequence) {
|
if (node instanceof AST_Seq) {
|
||||||
var last = node.expressions.length - 1;
|
node.cdr = mangleStrings(node.cdr);
|
||||||
node.expressions[last] = mangleStrings(node.expressions[last]);
|
}
|
||||||
} else if (node instanceof AST_String) {
|
else if (node instanceof AST_String) {
|
||||||
node.value = mangle(node.value);
|
node.value = mangle(node.value);
|
||||||
} else if (node instanceof AST_Conditional) {
|
}
|
||||||
|
else if (node instanceof AST_Conditional) {
|
||||||
node.consequent = mangleStrings(node.consequent);
|
node.consequent = mangleStrings(node.consequent);
|
||||||
node.alternative = mangleStrings(node.alternative);
|
node.alternative = mangleStrings(node.alternative);
|
||||||
}
|
}
|
||||||
return node;
|
return node;
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
704
lib/scope.js
704
lib/scope.js
@@ -43,64 +43,65 @@
|
|||||||
|
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
function SymbolDef(scope, orig, init) {
|
function SymbolDef(scope, index, orig) {
|
||||||
this.name = orig.name;
|
this.name = orig.name;
|
||||||
this.orig = [ orig ];
|
this.orig = [ orig ];
|
||||||
this.init = init;
|
|
||||||
this.eliminated = 0;
|
|
||||||
this.scope = scope;
|
this.scope = scope;
|
||||||
this.references = [];
|
this.references = [];
|
||||||
this.replaced = 0;
|
|
||||||
this.global = false;
|
this.global = false;
|
||||||
this.mangled_name = null;
|
this.mangled_name = null;
|
||||||
this.undeclared = false;
|
this.undeclared = false;
|
||||||
|
this.index = index;
|
||||||
this.id = SymbolDef.next_id++;
|
this.id = SymbolDef.next_id++;
|
||||||
this.lambda = orig instanceof AST_SymbolLambda;
|
};
|
||||||
}
|
|
||||||
|
|
||||||
SymbolDef.next_id = 1;
|
SymbolDef.next_id = 1;
|
||||||
|
|
||||||
SymbolDef.prototype = {
|
SymbolDef.prototype = {
|
||||||
unmangleable: function(options) {
|
unmangleable: function(options) {
|
||||||
return this.global && !options.toplevel
|
if (!options) options = {};
|
||||||
|
|
||||||
|
return (this.global && !options.toplevel)
|
||||||
|| this.undeclared
|
|| this.undeclared
|
||||||
|| !options.eval && this.scope.pinned()
|
|| (!options.eval && (this.scope.uses_eval || this.scope.uses_with))
|
||||||
|| options.keep_fnames
|
|| (options.keep_fnames
|
||||||
&& (this.orig[0] instanceof AST_SymbolLambda
|
&& (this.orig[0] instanceof AST_SymbolLambda
|
||||||
|| this.orig[0] instanceof AST_SymbolDefun);
|
|| this.orig[0] instanceof AST_SymbolDefun));
|
||||||
},
|
},
|
||||||
mangle: function(options) {
|
mangle: function(options) {
|
||||||
var cache = options.cache && options.cache.props;
|
var cache = options.cache && options.cache.props;
|
||||||
if (this.global && cache && cache.has(this.name)) {
|
if (this.global && cache && cache.has(this.name)) {
|
||||||
this.mangled_name = cache.get(this.name);
|
this.mangled_name = cache.get(this.name);
|
||||||
} else if (!this.mangled_name && !this.unmangleable(options)) {
|
}
|
||||||
|
else if (!this.mangled_name && !this.unmangleable(options)) {
|
||||||
|
var s = this.scope;
|
||||||
|
var sym = this.orig[0];
|
||||||
|
if (!options.screw_ie8 && sym instanceof AST_SymbolLambda)
|
||||||
|
s = s.parent_scope;
|
||||||
var def;
|
var def;
|
||||||
if (def = this.redefined()) {
|
if (this.defun && (def = this.defun.variables.get(this.name))) {
|
||||||
this.mangled_name = def.mangled_name || def.name;
|
this.mangled_name = def.mangled_name || def.name;
|
||||||
} else {
|
} else
|
||||||
this.mangled_name = next_mangled_name(this.scope, options, this);
|
this.mangled_name = s.next_mangled(options, this);
|
||||||
}
|
|
||||||
if (this.global && cache) {
|
if (this.global && cache) {
|
||||||
cache.set(this.name, this.mangled_name);
|
cache.set(this.name, this.mangled_name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
|
||||||
redefined: function() {
|
|
||||||
return this.defun && this.defun.variables.get(this.name);
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
AST_Toplevel.DEFMETHOD("figure_out_scope", function(options) {
|
AST_Toplevel.DEFMETHOD("figure_out_scope", function(options){
|
||||||
options = defaults(options, {
|
options = defaults(options, {
|
||||||
cache: null,
|
cache: null,
|
||||||
ie8: false,
|
screw_ie8: true,
|
||||||
});
|
});
|
||||||
|
|
||||||
// pass 1: setup scope chaining and handle definitions
|
// pass 1: setup scope chaining and handle definitions
|
||||||
var self = this;
|
var self = this;
|
||||||
var scope = self.parent_scope = null;
|
var scope = self.parent_scope = null;
|
||||||
|
var labels = new Dictionary();
|
||||||
var defun = null;
|
var defun = null;
|
||||||
var tw = new TreeWalker(function(node, descend) {
|
var tw = new TreeWalker(function(node, descend){
|
||||||
if (node instanceof AST_Catch) {
|
if (node instanceof AST_Catch) {
|
||||||
var save_scope = scope;
|
var save_scope = scope;
|
||||||
scope = new AST_Scope(node);
|
scope = new AST_Scope(node);
|
||||||
@@ -113,14 +114,28 @@ AST_Toplevel.DEFMETHOD("figure_out_scope", function(options) {
|
|||||||
node.init_scope_vars(scope);
|
node.init_scope_vars(scope);
|
||||||
var save_scope = scope;
|
var save_scope = scope;
|
||||||
var save_defun = defun;
|
var save_defun = defun;
|
||||||
|
var save_labels = labels;
|
||||||
defun = scope = node;
|
defun = scope = node;
|
||||||
|
labels = new Dictionary();
|
||||||
descend();
|
descend();
|
||||||
scope = save_scope;
|
scope = save_scope;
|
||||||
defun = save_defun;
|
defun = save_defun;
|
||||||
return true;
|
labels = save_labels;
|
||||||
|
return true; // don't descend again in TreeWalker
|
||||||
|
}
|
||||||
|
if (node instanceof AST_LabeledStatement) {
|
||||||
|
var l = node.label;
|
||||||
|
if (labels.has(l.name)) {
|
||||||
|
throw new Error(string_template("Label {name} defined twice", l));
|
||||||
|
}
|
||||||
|
labels.set(l.name, l);
|
||||||
|
descend();
|
||||||
|
labels.del(l.name);
|
||||||
|
return true; // no descend again
|
||||||
}
|
}
|
||||||
if (node instanceof AST_With) {
|
if (node instanceof AST_With) {
|
||||||
for (var s = scope; s; s = s.parent_scope) s.uses_with = true;
|
for (var s = scope; s; s = s.parent_scope)
|
||||||
|
s.uses_with = true;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (node instanceof AST_Symbol) {
|
if (node instanceof AST_Symbol) {
|
||||||
@@ -130,34 +145,57 @@ AST_Toplevel.DEFMETHOD("figure_out_scope", function(options) {
|
|||||||
node.thedef = node;
|
node.thedef = node;
|
||||||
node.references = [];
|
node.references = [];
|
||||||
}
|
}
|
||||||
if (node instanceof AST_SymbolDefun) {
|
if (node instanceof AST_SymbolLambda) {
|
||||||
// This should be defined in the parent scope, as we encounter the
|
defun.def_function(node);
|
||||||
// AST_Defun node before getting to its AST_Symbol.
|
}
|
||||||
(node.scope = defun.parent_scope.resolve()).def_function(node, defun);
|
else if (node instanceof AST_SymbolDefun) {
|
||||||
} else if (node instanceof AST_SymbolLambda) {
|
// Careful here, the scope where this should be defined is
|
||||||
var def = defun.def_function(node, node.name == "arguments" ? undefined : defun);
|
// the parent scope. The reason is that we enter a new
|
||||||
if (options.ie8) def.defun = defun.parent_scope.resolve();
|
// scope when we encounter the AST_Defun node (which is
|
||||||
} else if (node instanceof AST_SymbolVar) {
|
// instanceof AST_Scope) but we get to the symbol a bit
|
||||||
defun.def_variable(node, node.TYPE == "SymbolVar" ? null : undefined);
|
// later.
|
||||||
|
(node.scope = defun.parent_scope).def_function(node);
|
||||||
|
}
|
||||||
|
else if (node instanceof AST_SymbolVar
|
||||||
|
|| node instanceof AST_SymbolConst) {
|
||||||
|
defun.def_variable(node);
|
||||||
if (defun !== scope) {
|
if (defun !== scope) {
|
||||||
node.mark_enclosed(options);
|
node.mark_enclosed(options);
|
||||||
var def = scope.find_variable(node);
|
var def = scope.find_variable(node);
|
||||||
if (node.thedef !== def) {
|
if (node.thedef !== def) {
|
||||||
node.thedef = def;
|
node.thedef = def;
|
||||||
|
node.reference(options);
|
||||||
}
|
}
|
||||||
node.reference(options);
|
|
||||||
}
|
}
|
||||||
} else if (node instanceof AST_SymbolCatch) {
|
}
|
||||||
|
else if (node instanceof AST_SymbolCatch) {
|
||||||
scope.def_variable(node).defun = defun;
|
scope.def_variable(node).defun = defun;
|
||||||
}
|
}
|
||||||
|
else if (node instanceof AST_LabelRef) {
|
||||||
|
var sym = labels.get(node.name);
|
||||||
|
if (!sym) throw new Error(string_template("Undefined label {name} [{line},{col}]", {
|
||||||
|
name: node.name,
|
||||||
|
line: node.start.line,
|
||||||
|
col: node.start.col
|
||||||
|
}));
|
||||||
|
node.thedef = sym;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
self.walk(tw);
|
self.walk(tw);
|
||||||
|
|
||||||
// pass 2: find back references and eval
|
// pass 2: find back references and eval
|
||||||
self.globals = new Dictionary();
|
var func = null;
|
||||||
var tw = new TreeWalker(function(node) {
|
var globals = self.globals = new Dictionary();
|
||||||
if (node instanceof AST_LoopControl) {
|
var tw = new TreeWalker(function(node, descend){
|
||||||
if (node.label) node.label.thedef.references.push(node);
|
if (node instanceof AST_Lambda) {
|
||||||
|
var prev_func = func;
|
||||||
|
func = node;
|
||||||
|
descend();
|
||||||
|
func = prev_func;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (node instanceof AST_LoopControl && node.label) {
|
||||||
|
node.label.thedef.references.push(node);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (node instanceof AST_SymbolRef) {
|
if (node instanceof AST_SymbolRef) {
|
||||||
@@ -168,74 +206,48 @@ AST_Toplevel.DEFMETHOD("figure_out_scope", function(options) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
var sym = node.scope.find_variable(name);
|
var sym = node.scope.find_variable(name);
|
||||||
|
if (node.scope instanceof AST_Lambda && name == "arguments") {
|
||||||
|
node.scope.uses_arguments = true;
|
||||||
|
}
|
||||||
if (!sym) {
|
if (!sym) {
|
||||||
sym = self.def_global(node);
|
sym = self.def_global(node);
|
||||||
} else if (sym.scope instanceof AST_Lambda && name == "arguments") {
|
|
||||||
sym.scope.uses_arguments = true;
|
|
||||||
}
|
}
|
||||||
node.thedef = sym;
|
node.thedef = sym;
|
||||||
node.reference(options);
|
node.reference(options);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
// ensure mangling works if catch reuses a scope variable
|
|
||||||
if (node instanceof AST_SymbolCatch) {
|
|
||||||
var def = node.definition().redefined();
|
|
||||||
if (def) for (var s = node.scope; s; s = s.parent_scope) {
|
|
||||||
push_uniq(s.enclosed, def);
|
|
||||||
if (s === def.scope) break;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
self.walk(tw);
|
self.walk(tw);
|
||||||
|
|
||||||
// pass 3: fix up any scoping issue with IE8
|
// pass 3: fix up any scoping issue with IE8
|
||||||
if (options.ie8) self.walk(new TreeWalker(function(node) {
|
if (!options.screw_ie8) {
|
||||||
if (node instanceof AST_SymbolCatch) {
|
self.walk(new TreeWalker(function(node, descend) {
|
||||||
var scope = node.thedef.defun;
|
if (node instanceof AST_SymbolCatch) {
|
||||||
if (scope.name instanceof AST_SymbolLambda && scope.name.name == node.name) {
|
var name = node.name;
|
||||||
scope = scope.parent_scope.resolve();
|
var refs = node.thedef.references;
|
||||||
|
var scope = node.thedef.defun;
|
||||||
|
var def = scope.find_variable(name) || self.globals.get(name) || scope.def_variable(node);
|
||||||
|
refs.forEach(function(ref) {
|
||||||
|
ref.thedef = def;
|
||||||
|
ref.reference(options);
|
||||||
|
});
|
||||||
|
node.thedef = def;
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
redefine(node, scope);
|
}));
|
||||||
return true;
|
}
|
||||||
}
|
|
||||||
if (node instanceof AST_SymbolLambda) {
|
|
||||||
var def = node.thedef;
|
|
||||||
redefine(node, node.scope.parent_scope.resolve());
|
|
||||||
if (typeof node.thedef.init !== "undefined") {
|
|
||||||
node.thedef.init = false;
|
|
||||||
} else if (def.init) {
|
|
||||||
node.thedef.init = def.init;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}));
|
|
||||||
|
|
||||||
function redefine(node, scope) {
|
if (options.cache) {
|
||||||
var name = node.name;
|
this.cname = options.cache.cname;
|
||||||
var old_def = node.thedef;
|
|
||||||
var new_def = scope.find_variable(name);
|
|
||||||
if (new_def) {
|
|
||||||
var redef;
|
|
||||||
while (redef = new_def.redefined()) new_def = redef;
|
|
||||||
} else {
|
|
||||||
new_def = self.globals.get(name) || scope.def_variable(node);
|
|
||||||
}
|
|
||||||
old_def.orig.concat(old_def.references).forEach(function(node) {
|
|
||||||
node.thedef = new_def;
|
|
||||||
node.reference(options);
|
|
||||||
});
|
|
||||||
if (old_def.lambda) new_def.lambda = true;
|
|
||||||
if (new_def.undeclared) self.variables.set(name, new_def);
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
AST_Toplevel.DEFMETHOD("def_global", function(node) {
|
AST_Toplevel.DEFMETHOD("def_global", function(node){
|
||||||
var globals = this.globals, name = node.name;
|
var globals = this.globals, name = node.name;
|
||||||
if (globals.has(name)) {
|
if (globals.has(name)) {
|
||||||
return globals.get(name);
|
return globals.get(name);
|
||||||
} else {
|
} else {
|
||||||
var g = new SymbolDef(this, node);
|
var g = new SymbolDef(this, globals.size(), node);
|
||||||
g.undeclared = true;
|
g.undeclared = true;
|
||||||
g.global = true;
|
g.global = true;
|
||||||
globals.set(name, g);
|
globals.set(name, g);
|
||||||
@@ -243,7 +255,7 @@ AST_Toplevel.DEFMETHOD("def_global", function(node) {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
AST_Scope.DEFMETHOD("init_scope_vars", function(parent_scope) {
|
AST_Scope.DEFMETHOD("init_scope_vars", function(parent_scope){
|
||||||
this.variables = new Dictionary(); // map name to AST_SymbolVar (variables defined in this scope; includes functions)
|
this.variables = new Dictionary(); // map name to AST_SymbolVar (variables defined in this scope; includes functions)
|
||||||
this.functions = new Dictionary(); // map name to AST_SymbolDefun (functions defined in this scope)
|
this.functions = new Dictionary(); // map name to AST_SymbolDefun (functions defined in this scope)
|
||||||
this.uses_with = false; // will be set to true if this or some nested scope uses the `with` statement
|
this.uses_with = false; // will be set to true if this or some nested scope uses the `with` statement
|
||||||
@@ -253,10 +265,10 @@ AST_Scope.DEFMETHOD("init_scope_vars", function(parent_scope) {
|
|||||||
this.cname = -1; // the current index for mangling functions/variables
|
this.cname = -1; // the current index for mangling functions/variables
|
||||||
});
|
});
|
||||||
|
|
||||||
AST_Lambda.DEFMETHOD("init_scope_vars", function() {
|
AST_Lambda.DEFMETHOD("init_scope_vars", function(){
|
||||||
AST_Scope.prototype.init_scope_vars.apply(this, arguments);
|
AST_Scope.prototype.init_scope_vars.apply(this, arguments);
|
||||||
this.uses_arguments = false;
|
this.uses_arguments = false;
|
||||||
this.def_variable(new AST_SymbolFunarg({
|
this.def_variable(new AST_SymbolVar({
|
||||||
name: "arguments",
|
name: "arguments",
|
||||||
start: this.start,
|
start: this.start,
|
||||||
end: this.end
|
end: this.end
|
||||||
@@ -265,7 +277,8 @@ AST_Lambda.DEFMETHOD("init_scope_vars", function() {
|
|||||||
|
|
||||||
AST_Symbol.DEFMETHOD("mark_enclosed", function(options) {
|
AST_Symbol.DEFMETHOD("mark_enclosed", function(options) {
|
||||||
var def = this.definition();
|
var def = this.definition();
|
||||||
for (var s = this.scope; s; s = s.parent_scope) {
|
var s = this.scope;
|
||||||
|
while (s) {
|
||||||
push_uniq(s.enclosed, def);
|
push_uniq(s.enclosed, def);
|
||||||
if (options.keep_fnames) {
|
if (options.keep_fnames) {
|
||||||
s.functions.each(function(d) {
|
s.functions.each(function(d) {
|
||||||
@@ -273,6 +286,7 @@ AST_Symbol.DEFMETHOD("mark_enclosed", function(options) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
if (s === def.scope) break;
|
if (s === def.scope) break;
|
||||||
|
s = s.parent_scope;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -281,336 +295,362 @@ AST_Symbol.DEFMETHOD("reference", function(options) {
|
|||||||
this.mark_enclosed(options);
|
this.mark_enclosed(options);
|
||||||
});
|
});
|
||||||
|
|
||||||
AST_Scope.DEFMETHOD("find_variable", function(name) {
|
AST_Scope.DEFMETHOD("find_variable", function(name){
|
||||||
if (name instanceof AST_Symbol) name = name.name;
|
if (name instanceof AST_Symbol) name = name.name;
|
||||||
return this.variables.get(name)
|
return this.variables.get(name)
|
||||||
|| (this.parent_scope && this.parent_scope.find_variable(name));
|
|| (this.parent_scope && this.parent_scope.find_variable(name));
|
||||||
});
|
});
|
||||||
|
|
||||||
AST_Scope.DEFMETHOD("def_function", function(symbol, init) {
|
AST_Scope.DEFMETHOD("def_function", function(symbol){
|
||||||
var def = this.def_variable(symbol, init);
|
this.functions.set(symbol.name, this.def_variable(symbol));
|
||||||
if (!def.init || def.init instanceof AST_Defun) def.init = init;
|
|
||||||
this.functions.set(symbol.name, def);
|
|
||||||
return def;
|
|
||||||
});
|
});
|
||||||
|
|
||||||
AST_Scope.DEFMETHOD("def_variable", function(symbol, init) {
|
AST_Scope.DEFMETHOD("def_variable", function(symbol){
|
||||||
var def = this.variables.get(symbol.name);
|
var def;
|
||||||
if (def) {
|
if (!this.variables.has(symbol.name)) {
|
||||||
def.orig.push(symbol);
|
def = new SymbolDef(this, this.variables.size(), symbol);
|
||||||
if (def.init instanceof AST_Function) def.init = init;
|
|
||||||
} else {
|
|
||||||
def = new SymbolDef(this, symbol, init);
|
|
||||||
this.variables.set(symbol.name, def);
|
this.variables.set(symbol.name, def);
|
||||||
def.global = !this.parent_scope;
|
def.global = !this.parent_scope;
|
||||||
|
} else {
|
||||||
|
def = this.variables.get(symbol.name);
|
||||||
|
def.orig.push(symbol);
|
||||||
}
|
}
|
||||||
return symbol.thedef = def;
|
return symbol.thedef = def;
|
||||||
});
|
});
|
||||||
|
|
||||||
AST_Lambda.DEFMETHOD("resolve", return_this);
|
AST_Scope.DEFMETHOD("next_mangled", function(options){
|
||||||
AST_Scope.DEFMETHOD("resolve", function() {
|
var ext = this.enclosed;
|
||||||
return this.parent_scope.resolve();
|
out: while (true) {
|
||||||
|
var m = base54(++this.cname);
|
||||||
|
if (!is_identifier(m)) continue; // skip over "do"
|
||||||
|
|
||||||
|
// https://github.com/mishoo/UglifyJS2/issues/242 -- do not
|
||||||
|
// shadow a name excepted from mangling.
|
||||||
|
if (options.except.indexOf(m) >= 0) continue;
|
||||||
|
|
||||||
|
// we must ensure that the mangled name does not shadow a name
|
||||||
|
// from some parent scope that is referenced in this or in
|
||||||
|
// inner scopes.
|
||||||
|
for (var i = ext.length; --i >= 0;) {
|
||||||
|
var sym = ext[i];
|
||||||
|
var name = sym.mangled_name || (sym.unmangleable(options) && sym.name);
|
||||||
|
if (m == name) continue out;
|
||||||
|
}
|
||||||
|
return m;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
AST_Toplevel.DEFMETHOD("resolve", return_this);
|
|
||||||
|
|
||||||
function names_in_use(scope, options) {
|
AST_Function.DEFMETHOD("next_mangled", function(options, def){
|
||||||
var names = scope.names_in_use;
|
// #179, #326
|
||||||
if (!names) {
|
// in Safari strict mode, something like (function x(x){...}) is a syntax error;
|
||||||
scope.names_in_use = names = Object.create(scope.mangled_names || null);
|
// a function expression's argument cannot shadow the function expression's name
|
||||||
scope.cname_holes = [];
|
|
||||||
var cache = options.cache && options.cache.props;
|
var tricky_def = def.orig[0] instanceof AST_SymbolFunarg && this.name && this.name.definition();
|
||||||
scope.enclosed.forEach(function(def) {
|
|
||||||
if (def.unmangleable(options)) names[def.name] = true;
|
// the function's mangled_name is null when keep_fnames is true
|
||||||
if (def.global && cache && cache.has(def.name)) {
|
var tricky_name = tricky_def ? tricky_def.mangled_name || tricky_def.name : null;
|
||||||
names[cache.get(def.name)] = true;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
return names;
|
|
||||||
}
|
|
||||||
|
|
||||||
function next_mangled_name(scope, options, def) {
|
|
||||||
var in_use = names_in_use(scope, options);
|
|
||||||
var holes = scope.cname_holes;
|
|
||||||
var names = Object.create(null);
|
|
||||||
var scopes = [ scope ];
|
|
||||||
def.references.forEach(function(sym) {
|
|
||||||
var scope = sym.scope;
|
|
||||||
do {
|
|
||||||
if (scopes.indexOf(scope) < 0) {
|
|
||||||
for (var name in names_in_use(scope, options)) {
|
|
||||||
names[name] = true;
|
|
||||||
}
|
|
||||||
scopes.push(scope);
|
|
||||||
} else break;
|
|
||||||
} while (scope = scope.parent_scope);
|
|
||||||
});
|
|
||||||
var name;
|
|
||||||
for (var i = 0; i < holes.length; i++) {
|
|
||||||
name = base54(holes[i]);
|
|
||||||
if (names[name]) continue;
|
|
||||||
holes.splice(i, 1);
|
|
||||||
scope.names_in_use[name] = true;
|
|
||||||
return name;
|
|
||||||
}
|
|
||||||
while (true) {
|
while (true) {
|
||||||
name = base54(++scope.cname);
|
var name = AST_Lambda.prototype.next_mangled.call(this, options, def);
|
||||||
if (in_use[name] || RESERVED_WORDS[name] || options.reserved.has[name]) continue;
|
if (!tricky_name || tricky_name != name)
|
||||||
if (!names[name]) break;
|
return name;
|
||||||
holes.push(scope.cname);
|
|
||||||
}
|
}
|
||||||
scope.names_in_use[name] = true;
|
});
|
||||||
return name;
|
|
||||||
}
|
|
||||||
|
|
||||||
AST_Symbol.DEFMETHOD("unmangleable", function(options) {
|
AST_Symbol.DEFMETHOD("unmangleable", function(options){
|
||||||
var def = this.definition();
|
return this.definition().unmangleable(options);
|
||||||
return !def || def.unmangleable(options);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// labels are always mangleable
|
// labels are always mangleable
|
||||||
AST_Label.DEFMETHOD("unmangleable", return_false);
|
AST_Label.DEFMETHOD("unmangleable", function(){
|
||||||
|
return false;
|
||||||
AST_Symbol.DEFMETHOD("unreferenced", function() {
|
|
||||||
return !this.definition().references.length && !this.scope.pinned();
|
|
||||||
});
|
});
|
||||||
|
|
||||||
AST_Symbol.DEFMETHOD("definition", function() {
|
AST_Symbol.DEFMETHOD("unreferenced", function(){
|
||||||
|
return this.definition().references.length == 0
|
||||||
|
&& !(this.scope.uses_eval || this.scope.uses_with);
|
||||||
|
});
|
||||||
|
|
||||||
|
AST_Symbol.DEFMETHOD("undeclared", function(){
|
||||||
|
return this.definition().undeclared;
|
||||||
|
});
|
||||||
|
|
||||||
|
AST_LabelRef.DEFMETHOD("undeclared", function(){
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
|
||||||
|
AST_Label.DEFMETHOD("undeclared", function(){
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
|
||||||
|
AST_Symbol.DEFMETHOD("definition", function(){
|
||||||
return this.thedef;
|
return this.thedef;
|
||||||
});
|
});
|
||||||
|
|
||||||
AST_Symbol.DEFMETHOD("global", function() {
|
AST_Symbol.DEFMETHOD("global", function(){
|
||||||
return this.definition().global;
|
return this.definition().global;
|
||||||
});
|
});
|
||||||
|
|
||||||
function _default_mangler_options(options) {
|
AST_Toplevel.DEFMETHOD("_default_mangler_options", function(options){
|
||||||
options = defaults(options, {
|
return defaults(options, {
|
||||||
eval : false,
|
eval : false,
|
||||||
ie8 : false,
|
except : [],
|
||||||
keep_fnames : false,
|
keep_fnames : false,
|
||||||
reserved : [],
|
screw_ie8 : true,
|
||||||
|
sort : false, // Ignored. Flag retained for backwards compatibility.
|
||||||
toplevel : false,
|
toplevel : false,
|
||||||
});
|
});
|
||||||
if (!Array.isArray(options.reserved)) options.reserved = [];
|
});
|
||||||
// Never mangle arguments
|
|
||||||
push_uniq(options.reserved, "arguments");
|
|
||||||
options.reserved.has = makePredicate(options.reserved);
|
|
||||||
return options;
|
|
||||||
}
|
|
||||||
|
|
||||||
AST_Toplevel.DEFMETHOD("mangle_names", function(options) {
|
AST_Toplevel.DEFMETHOD("mangle_names", function(options){
|
||||||
options = _default_mangler_options(options);
|
options = this._default_mangler_options(options);
|
||||||
|
|
||||||
|
// Never mangle arguments
|
||||||
|
options.except.push('arguments');
|
||||||
|
|
||||||
// We only need to mangle declaration nodes. Special logic wired
|
// We only need to mangle declaration nodes. Special logic wired
|
||||||
// into the code generator will display the mangled name if it's
|
// into the code generator will display the mangled name if it's
|
||||||
// present (and for AST_SymbolRef-s it'll use the mangled name of
|
// present (and for AST_SymbolRef-s it'll use the mangled name of
|
||||||
// the AST_SymbolDeclaration that it points to).
|
// the AST_SymbolDeclaration that it points to).
|
||||||
var lname = -1;
|
var lname = -1;
|
||||||
|
var to_mangle = [];
|
||||||
|
|
||||||
if (options.cache && options.cache.props) {
|
if (options.cache) {
|
||||||
var mangled_names = this.mangled_names = Object.create(null);
|
this.globals.each(function(symbol){
|
||||||
options.cache.props.each(function(mangled_name) {
|
if (options.except.indexOf(symbol.name) < 0) {
|
||||||
mangled_names[mangled_name] = true;
|
to_mangle.push(symbol);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
var redefined = [];
|
var tw = new TreeWalker(function(node, descend){
|
||||||
var tw = new TreeWalker(function(node, descend) {
|
|
||||||
if (node instanceof AST_LabeledStatement) {
|
if (node instanceof AST_LabeledStatement) {
|
||||||
// lname is incremented when we get to the AST_Label
|
// lname is incremented when we get to the AST_Label
|
||||||
var save_nesting = lname;
|
var save_nesting = lname;
|
||||||
descend();
|
descend();
|
||||||
lname = save_nesting;
|
lname = save_nesting;
|
||||||
return true;
|
return true; // don't descend again in TreeWalker
|
||||||
}
|
}
|
||||||
if (node instanceof AST_Scope) {
|
if (node instanceof AST_Scope) {
|
||||||
descend();
|
var p = tw.parent(), a = [];
|
||||||
if (options.cache && node instanceof AST_Toplevel) {
|
node.variables.each(function(symbol){
|
||||||
node.globals.each(mangle);
|
if (options.except.indexOf(symbol.name) < 0) {
|
||||||
}
|
a.push(symbol);
|
||||||
node.variables.each(function(def) {
|
}
|
||||||
if (!defer_redef(def)) mangle(def);
|
|
||||||
});
|
});
|
||||||
return true;
|
to_mangle.push.apply(to_mangle, a);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
if (node instanceof AST_Label) {
|
if (node instanceof AST_Label) {
|
||||||
var name;
|
var name;
|
||||||
do {
|
do name = base54(++lname); while (!is_identifier(name));
|
||||||
name = base54(++lname);
|
|
||||||
} while (RESERVED_WORDS[name]);
|
|
||||||
node.mangled_name = name;
|
node.mangled_name = name;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (!options.ie8 && node instanceof AST_Catch) {
|
if (options.screw_ie8 && node instanceof AST_SymbolCatch) {
|
||||||
var def = node.argname.definition();
|
to_mangle.push(node.definition());
|
||||||
var redef = defer_redef(def, node.argname);
|
return;
|
||||||
descend();
|
|
||||||
if (!redef) mangle(def);
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
this.walk(tw);
|
this.walk(tw);
|
||||||
redefined.forEach(mangle);
|
to_mangle.forEach(function(def){ def.mangle(options) });
|
||||||
|
|
||||||
function mangle(def) {
|
if (options.cache) {
|
||||||
if (options.reserved.has[def.name]) return;
|
options.cache.cname = this.cname;
|
||||||
def.mangle(options);
|
|
||||||
}
|
}
|
||||||
|
});
|
||||||
|
|
||||||
function defer_redef(def, node) {
|
AST_Toplevel.DEFMETHOD("compute_char_frequency", function(options){
|
||||||
var redef = def.redefined();
|
options = this._default_mangler_options(options);
|
||||||
if (!redef) return false;
|
var tw = new TreeWalker(function(node){
|
||||||
redefined.push(def);
|
if (node instanceof AST_Constant)
|
||||||
def.references.forEach(reference);
|
base54.consider(node.print_to_string());
|
||||||
if (node) reference(node);
|
else if (node instanceof AST_Return)
|
||||||
return true;
|
base54.consider("return");
|
||||||
|
else if (node instanceof AST_Throw)
|
||||||
function reference(sym) {
|
base54.consider("throw");
|
||||||
sym.thedef = redef;
|
else if (node instanceof AST_Continue)
|
||||||
sym.reference(options);
|
base54.consider("continue");
|
||||||
sym.thedef = def;
|
else if (node instanceof AST_Break)
|
||||||
|
base54.consider("break");
|
||||||
|
else if (node instanceof AST_Debugger)
|
||||||
|
base54.consider("debugger");
|
||||||
|
else if (node instanceof AST_Directive)
|
||||||
|
base54.consider(node.value);
|
||||||
|
else if (node instanceof AST_While)
|
||||||
|
base54.consider("while");
|
||||||
|
else if (node instanceof AST_Do)
|
||||||
|
base54.consider("do while");
|
||||||
|
else if (node instanceof AST_If) {
|
||||||
|
base54.consider("if");
|
||||||
|
if (node.alternative) base54.consider("else");
|
||||||
}
|
}
|
||||||
}
|
else if (node instanceof AST_Var)
|
||||||
});
|
base54.consider("var");
|
||||||
|
else if (node instanceof AST_Const)
|
||||||
AST_Toplevel.DEFMETHOD("find_colliding_names", function(options) {
|
base54.consider("const");
|
||||||
var cache = options.cache && options.cache.props;
|
else if (node instanceof AST_Lambda)
|
||||||
var avoid = Object.create(null);
|
base54.consider("function");
|
||||||
options.reserved.forEach(to_avoid);
|
else if (node instanceof AST_For)
|
||||||
this.globals.each(add_def);
|
base54.consider("for");
|
||||||
this.walk(new TreeWalker(function(node) {
|
else if (node instanceof AST_ForIn)
|
||||||
if (node instanceof AST_Scope) node.variables.each(add_def);
|
base54.consider("for in");
|
||||||
if (node instanceof AST_SymbolCatch) add_def(node.definition());
|
else if (node instanceof AST_Switch)
|
||||||
}));
|
base54.consider("switch");
|
||||||
return avoid;
|
else if (node instanceof AST_Case)
|
||||||
|
base54.consider("case");
|
||||||
function to_avoid(name) {
|
else if (node instanceof AST_Default)
|
||||||
avoid[name] = true;
|
base54.consider("default");
|
||||||
}
|
else if (node instanceof AST_With)
|
||||||
|
base54.consider("with");
|
||||||
function add_def(def) {
|
else if (node instanceof AST_ObjectSetter)
|
||||||
var name = def.name;
|
base54.consider("set" + node.key);
|
||||||
if (def.global && cache && cache.has(name)) name = cache.get(name);
|
else if (node instanceof AST_ObjectGetter)
|
||||||
else if (!def.unmangleable(options)) return;
|
base54.consider("get" + node.key);
|
||||||
to_avoid(name);
|
else if (node instanceof AST_ObjectKeyVal)
|
||||||
}
|
base54.consider(node.key);
|
||||||
});
|
else if (node instanceof AST_New)
|
||||||
|
base54.consider("new");
|
||||||
AST_Toplevel.DEFMETHOD("expand_names", function(options) {
|
else if (node instanceof AST_This)
|
||||||
base54.reset();
|
base54.consider("this");
|
||||||
|
else if (node instanceof AST_Try)
|
||||||
|
base54.consider("try");
|
||||||
|
else if (node instanceof AST_Catch)
|
||||||
|
base54.consider("catch");
|
||||||
|
else if (node instanceof AST_Finally)
|
||||||
|
base54.consider("finally");
|
||||||
|
else if (node instanceof AST_Symbol && node.unmangleable(options))
|
||||||
|
base54.consider(node.name);
|
||||||
|
else if (node instanceof AST_Unary || node instanceof AST_Binary)
|
||||||
|
base54.consider(node.operator);
|
||||||
|
else if (node instanceof AST_Dot)
|
||||||
|
base54.consider(node.property);
|
||||||
|
});
|
||||||
|
this.walk(tw);
|
||||||
base54.sort();
|
base54.sort();
|
||||||
options = _default_mangler_options(options);
|
|
||||||
var avoid = this.find_colliding_names(options);
|
|
||||||
var cname = 0;
|
|
||||||
this.globals.each(rename);
|
|
||||||
this.walk(new TreeWalker(function(node) {
|
|
||||||
if (node instanceof AST_Scope) node.variables.each(rename);
|
|
||||||
if (node instanceof AST_SymbolCatch) rename(node.definition());
|
|
||||||
}));
|
|
||||||
|
|
||||||
function next_name() {
|
|
||||||
var name;
|
|
||||||
do {
|
|
||||||
name = base54(cname++);
|
|
||||||
} while (avoid[name] || RESERVED_WORDS[name]);
|
|
||||||
return name;
|
|
||||||
}
|
|
||||||
|
|
||||||
function rename(def) {
|
|
||||||
if (def.global && options.cache) return;
|
|
||||||
if (def.unmangleable(options)) return;
|
|
||||||
if (options.reserved.has[def.name]) return;
|
|
||||||
var redef = def.redefined();
|
|
||||||
var name = redef ? redef.rename || redef.name : next_name();
|
|
||||||
def.rename = name;
|
|
||||||
def.orig.forEach(function(sym) {
|
|
||||||
sym.name = name;
|
|
||||||
});
|
|
||||||
def.references.forEach(function(sym) {
|
|
||||||
sym.name = name;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
AST_Node.DEFMETHOD("tail_node", return_this);
|
|
||||||
AST_Sequence.DEFMETHOD("tail_node", function() {
|
|
||||||
return this.expressions[this.expressions.length - 1];
|
|
||||||
});
|
|
||||||
|
|
||||||
AST_Toplevel.DEFMETHOD("compute_char_frequency", function(options) {
|
|
||||||
options = _default_mangler_options(options);
|
|
||||||
base54.reset();
|
|
||||||
try {
|
|
||||||
AST_Node.prototype.print = function(stream, force_parens) {
|
|
||||||
this._print(stream, force_parens);
|
|
||||||
if (this instanceof AST_Symbol && !this.unmangleable(options)) {
|
|
||||||
base54.consider(this.name, -1);
|
|
||||||
} else if (options.properties) {
|
|
||||||
if (this instanceof AST_Dot) {
|
|
||||||
base54.consider(this.property, -1);
|
|
||||||
} else if (this instanceof AST_Sub) {
|
|
||||||
skip_string(this.property);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
base54.consider(this.print_to_string(), 1);
|
|
||||||
} finally {
|
|
||||||
AST_Node.prototype.print = AST_Node.prototype._print;
|
|
||||||
}
|
|
||||||
base54.sort();
|
|
||||||
|
|
||||||
function skip_string(node) {
|
|
||||||
if (node instanceof AST_String) {
|
|
||||||
base54.consider(node.value, -1);
|
|
||||||
} else if (node instanceof AST_Conditional) {
|
|
||||||
skip_string(node.consequent);
|
|
||||||
skip_string(node.alternative);
|
|
||||||
} else if (node instanceof AST_Sequence) {
|
|
||||||
skip_string(node.tail_node());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
var base54 = (function() {
|
var base54 = (function() {
|
||||||
var freq = Object.create(null);
|
var string = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ$_0123456789";
|
||||||
function init(chars) {
|
|
||||||
var array = [];
|
|
||||||
for (var i = 0; i < chars.length; i++) {
|
|
||||||
var ch = chars[i];
|
|
||||||
array.push(ch);
|
|
||||||
freq[ch] = -1e-2 * i;
|
|
||||||
}
|
|
||||||
return array;
|
|
||||||
}
|
|
||||||
var digits = init("0123456789");
|
|
||||||
var leading = init("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ$_");
|
|
||||||
var chars, frequency;
|
var chars, frequency;
|
||||||
function reset() {
|
function reset() {
|
||||||
frequency = Object.create(freq);
|
frequency = Object.create(null);
|
||||||
|
chars = string.split("").map(function(ch){ return ch.charCodeAt(0) });
|
||||||
|
chars.forEach(function(ch){ frequency[ch] = 0 });
|
||||||
}
|
}
|
||||||
base54.consider = function(str, delta) {
|
base54.consider = function(str){
|
||||||
for (var i = str.length; --i >= 0;) {
|
for (var i = str.length; --i >= 0;) {
|
||||||
frequency[str[i]] += delta;
|
var code = str.charCodeAt(i);
|
||||||
|
if (code in frequency) ++frequency[code];
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
function compare(a, b) {
|
|
||||||
return frequency[b] - frequency[a];
|
|
||||||
}
|
|
||||||
base54.sort = function() {
|
base54.sort = function() {
|
||||||
chars = leading.sort(compare).concat(digits.sort(compare));
|
chars = mergeSort(chars, function(a, b){
|
||||||
|
if (is_digit(a) && !is_digit(b)) return 1;
|
||||||
|
if (is_digit(b) && !is_digit(a)) return -1;
|
||||||
|
return frequency[b] - frequency[a];
|
||||||
|
});
|
||||||
};
|
};
|
||||||
base54.reset = reset;
|
base54.reset = reset;
|
||||||
reset();
|
reset();
|
||||||
|
base54.get = function(){ return chars };
|
||||||
|
base54.freq = function(){ return frequency };
|
||||||
function base54(num) {
|
function base54(num) {
|
||||||
var ret = "", base = 54;
|
var ret = "", base = 54;
|
||||||
num++;
|
num++;
|
||||||
do {
|
do {
|
||||||
num--;
|
num--;
|
||||||
ret += chars[num % base];
|
ret += String.fromCharCode(chars[num % base]);
|
||||||
num = Math.floor(num / base);
|
num = Math.floor(num / base);
|
||||||
base = 64;
|
base = 64;
|
||||||
} while (num > 0);
|
} while (num > 0);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
};
|
||||||
return base54;
|
return base54;
|
||||||
})();
|
})();
|
||||||
|
|
||||||
|
AST_Toplevel.DEFMETHOD("scope_warnings", function(options){
|
||||||
|
options = defaults(options, {
|
||||||
|
assign_to_global : true,
|
||||||
|
eval : true,
|
||||||
|
func_arguments : true,
|
||||||
|
nested_defuns : true,
|
||||||
|
undeclared : false, // this makes a lot of noise
|
||||||
|
unreferenced : true,
|
||||||
|
});
|
||||||
|
var tw = new TreeWalker(function(node){
|
||||||
|
if (options.undeclared
|
||||||
|
&& node instanceof AST_SymbolRef
|
||||||
|
&& node.undeclared())
|
||||||
|
{
|
||||||
|
// XXX: this also warns about JS standard names,
|
||||||
|
// i.e. Object, Array, parseInt etc. Should add a list of
|
||||||
|
// exceptions.
|
||||||
|
AST_Node.warn("Undeclared symbol: {name} [{file}:{line},{col}]", {
|
||||||
|
name: node.name,
|
||||||
|
file: node.start.file,
|
||||||
|
line: node.start.line,
|
||||||
|
col: node.start.col
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (options.assign_to_global)
|
||||||
|
{
|
||||||
|
var sym = null;
|
||||||
|
if (node instanceof AST_Assign && node.left instanceof AST_SymbolRef)
|
||||||
|
sym = node.left;
|
||||||
|
else if (node instanceof AST_ForIn && node.init instanceof AST_SymbolRef)
|
||||||
|
sym = node.init;
|
||||||
|
if (sym
|
||||||
|
&& (sym.undeclared()
|
||||||
|
|| (sym.global() && sym.scope !== sym.definition().scope))) {
|
||||||
|
AST_Node.warn("{msg}: {name} [{file}:{line},{col}]", {
|
||||||
|
msg: sym.undeclared() ? "Accidental global?" : "Assignment to global",
|
||||||
|
name: sym.name,
|
||||||
|
file: sym.start.file,
|
||||||
|
line: sym.start.line,
|
||||||
|
col: sym.start.col
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (options.eval
|
||||||
|
&& node instanceof AST_SymbolRef
|
||||||
|
&& node.undeclared()
|
||||||
|
&& node.name == "eval") {
|
||||||
|
AST_Node.warn("Eval is used [{file}:{line},{col}]", node.start);
|
||||||
|
}
|
||||||
|
if (options.unreferenced
|
||||||
|
&& (node instanceof AST_SymbolDeclaration || node instanceof AST_Label)
|
||||||
|
&& !(node instanceof AST_SymbolCatch)
|
||||||
|
&& node.unreferenced()) {
|
||||||
|
AST_Node.warn("{type} {name} is declared but not referenced [{file}:{line},{col}]", {
|
||||||
|
type: node instanceof AST_Label ? "Label" : "Symbol",
|
||||||
|
name: node.name,
|
||||||
|
file: node.start.file,
|
||||||
|
line: node.start.line,
|
||||||
|
col: node.start.col
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (options.func_arguments
|
||||||
|
&& node instanceof AST_Lambda
|
||||||
|
&& node.uses_arguments) {
|
||||||
|
AST_Node.warn("arguments used in function {name} [{file}:{line},{col}]", {
|
||||||
|
name: node.name ? node.name.name : "anonymous",
|
||||||
|
file: node.start.file,
|
||||||
|
line: node.start.line,
|
||||||
|
col: node.start.col
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (options.nested_defuns
|
||||||
|
&& node instanceof AST_Defun
|
||||||
|
&& !(tw.parent() instanceof AST_Scope)) {
|
||||||
|
AST_Node.warn("Function {name} declared in nested statement \"{type}\" [{file}:{line},{col}]", {
|
||||||
|
name: node.name.name,
|
||||||
|
type: tw.parent().TYPE,
|
||||||
|
file: node.start.file,
|
||||||
|
line: node.start.line,
|
||||||
|
col: node.start.col
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
this.walk(tw);
|
||||||
|
});
|
||||||
|
|||||||
@@ -46,59 +46,52 @@
|
|||||||
// a small wrapper around fitzgen's source-map library
|
// a small wrapper around fitzgen's source-map library
|
||||||
function SourceMap(options) {
|
function SourceMap(options) {
|
||||||
options = defaults(options, {
|
options = defaults(options, {
|
||||||
file: null,
|
file : null,
|
||||||
root: null,
|
root : null,
|
||||||
orig: null,
|
orig : null,
|
||||||
orig_line_diff: 0,
|
|
||||||
dest_line_diff: 0,
|
orig_line_diff : 0,
|
||||||
}, true);
|
dest_line_diff : 0,
|
||||||
var generator = new MOZ_SourceMap.SourceMapGenerator({
|
|
||||||
file: options.file,
|
|
||||||
sourceRoot: options.root
|
|
||||||
});
|
});
|
||||||
var maps = options.orig && Object.create(null);
|
var generator = new MOZ_SourceMap.SourceMapGenerator({
|
||||||
if (maps) for (var source in options.orig) {
|
file : options.file,
|
||||||
var map = new MOZ_SourceMap.SourceMapConsumer(options.orig[source]);
|
sourceRoot : options.root
|
||||||
if (Array.isArray(options.orig[source].sources)) {
|
});
|
||||||
map._sources.toArray().forEach(function(source) {
|
var orig_map = options.orig && new MOZ_SourceMap.SourceMapConsumer(options.orig);
|
||||||
var sourceContent = map.sourceContentFor(source, true);
|
|
||||||
if (sourceContent) generator.setSourceContent(source, sourceContent);
|
if (orig_map && Array.isArray(options.orig.sources)) {
|
||||||
});
|
orig_map._sources.toArray().forEach(function(source) {
|
||||||
}
|
var sourceContent = orig_map.sourceContentFor(source, true);
|
||||||
maps[source] = map;
|
if (sourceContent) {
|
||||||
}
|
generator.setSourceContent(source, sourceContent);
|
||||||
return {
|
|
||||||
add: function(source, gen_line, gen_col, orig_line, orig_col, name) {
|
|
||||||
var map = maps && maps[source];
|
|
||||||
if (map) {
|
|
||||||
var info = map.originalPositionFor({
|
|
||||||
line: orig_line,
|
|
||||||
column: orig_col
|
|
||||||
});
|
|
||||||
if (info.source === null) return;
|
|
||||||
source = info.source;
|
|
||||||
orig_line = info.line;
|
|
||||||
orig_col = info.column;
|
|
||||||
name = info.name || name;
|
|
||||||
}
|
}
|
||||||
generator.addMapping({
|
});
|
||||||
name: name,
|
}
|
||||||
source: source,
|
|
||||||
generated: {
|
function add(source, gen_line, gen_col, orig_line, orig_col, name) {
|
||||||
line: gen_line + options.dest_line_diff,
|
if (orig_map) {
|
||||||
column: gen_col
|
var info = orig_map.originalPositionFor({
|
||||||
},
|
line: orig_line,
|
||||||
original: {
|
column: orig_col
|
||||||
line: orig_line + options.orig_line_diff,
|
|
||||||
column: orig_col
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
},
|
if (info.source === null) {
|
||||||
get: function() {
|
return;
|
||||||
return generator;
|
}
|
||||||
},
|
source = info.source;
|
||||||
toString: function() {
|
orig_line = info.line;
|
||||||
return JSON.stringify(generator.toJSON());
|
orig_col = info.column;
|
||||||
|
name = info.name || name;
|
||||||
}
|
}
|
||||||
|
generator.addMapping({
|
||||||
|
generated : { line: gen_line + options.dest_line_diff, column: gen_col },
|
||||||
|
original : { line: orig_line + options.orig_line_diff, column: orig_col },
|
||||||
|
source : source,
|
||||||
|
name : name
|
||||||
|
});
|
||||||
};
|
};
|
||||||
}
|
return {
|
||||||
|
add : add,
|
||||||
|
get : function() { return generator },
|
||||||
|
toString : function() { return JSON.stringify(generator.toJSON()); }
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|||||||
139
lib/transform.js
139
lib/transform.js
@@ -43,6 +43,8 @@
|
|||||||
|
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
|
// Tree transformer helpers.
|
||||||
|
|
||||||
function TreeTransformer(before, after) {
|
function TreeTransformer(before, after) {
|
||||||
TreeWalker.call(this);
|
TreeWalker.call(this);
|
||||||
this.before = before;
|
this.before = before;
|
||||||
@@ -50,136 +52,167 @@ function TreeTransformer(before, after) {
|
|||||||
}
|
}
|
||||||
TreeTransformer.prototype = new TreeWalker;
|
TreeTransformer.prototype = new TreeWalker;
|
||||||
|
|
||||||
(function(DEF) {
|
(function(undefined){
|
||||||
|
|
||||||
|
function _(node, descend) {
|
||||||
|
node.DEFMETHOD("transform", function(tw, in_list){
|
||||||
|
var x, y;
|
||||||
|
tw.push(this);
|
||||||
|
if (tw.before) x = tw.before(this, descend, in_list);
|
||||||
|
if (x === undefined) {
|
||||||
|
if (!tw.after) {
|
||||||
|
x = this;
|
||||||
|
descend(x, tw);
|
||||||
|
} else {
|
||||||
|
tw.stack[tw.stack.length - 1] = x = this;
|
||||||
|
descend(x, tw);
|
||||||
|
y = tw.after(x, in_list);
|
||||||
|
if (y !== undefined) x = y;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
tw.pop(this);
|
||||||
|
return x;
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
function do_list(list, tw) {
|
function do_list(list, tw) {
|
||||||
return MAP(list, function(node) {
|
return MAP(list, function(node){
|
||||||
return node.transform(tw, true);
|
return node.transform(tw, true);
|
||||||
});
|
});
|
||||||
}
|
};
|
||||||
|
|
||||||
DEF(AST_Node, noop);
|
_(AST_Node, noop);
|
||||||
DEF(AST_LabeledStatement, function(self, tw) {
|
|
||||||
|
_(AST_LabeledStatement, function(self, tw){
|
||||||
self.label = self.label.transform(tw);
|
self.label = self.label.transform(tw);
|
||||||
self.body = self.body.transform(tw);
|
self.body = self.body.transform(tw);
|
||||||
});
|
});
|
||||||
DEF(AST_SimpleStatement, function(self, tw) {
|
|
||||||
|
_(AST_SimpleStatement, function(self, tw){
|
||||||
self.body = self.body.transform(tw);
|
self.body = self.body.transform(tw);
|
||||||
});
|
});
|
||||||
DEF(AST_Block, function(self, tw) {
|
|
||||||
|
_(AST_Block, function(self, tw){
|
||||||
self.body = do_list(self.body, tw);
|
self.body = do_list(self.body, tw);
|
||||||
});
|
});
|
||||||
DEF(AST_Do, function(self, tw) {
|
|
||||||
self.body = self.body.transform(tw);
|
_(AST_DWLoop, function(self, tw){
|
||||||
self.condition = self.condition.transform(tw);
|
|
||||||
});
|
|
||||||
DEF(AST_While, function(self, tw) {
|
|
||||||
self.condition = self.condition.transform(tw);
|
self.condition = self.condition.transform(tw);
|
||||||
self.body = self.body.transform(tw);
|
self.body = self.body.transform(tw);
|
||||||
});
|
});
|
||||||
DEF(AST_For, function(self, tw) {
|
|
||||||
|
_(AST_For, function(self, tw){
|
||||||
if (self.init) self.init = self.init.transform(tw);
|
if (self.init) self.init = self.init.transform(tw);
|
||||||
if (self.condition) self.condition = self.condition.transform(tw);
|
if (self.condition) self.condition = self.condition.transform(tw);
|
||||||
if (self.step) self.step = self.step.transform(tw);
|
if (self.step) self.step = self.step.transform(tw);
|
||||||
self.body = self.body.transform(tw);
|
self.body = self.body.transform(tw);
|
||||||
});
|
});
|
||||||
DEF(AST_ForIn, function(self, tw) {
|
|
||||||
|
_(AST_ForIn, function(self, tw){
|
||||||
self.init = self.init.transform(tw);
|
self.init = self.init.transform(tw);
|
||||||
self.object = self.object.transform(tw);
|
self.object = self.object.transform(tw);
|
||||||
self.body = self.body.transform(tw);
|
self.body = self.body.transform(tw);
|
||||||
});
|
});
|
||||||
DEF(AST_With, function(self, tw) {
|
|
||||||
|
_(AST_With, function(self, tw){
|
||||||
self.expression = self.expression.transform(tw);
|
self.expression = self.expression.transform(tw);
|
||||||
self.body = self.body.transform(tw);
|
self.body = self.body.transform(tw);
|
||||||
});
|
});
|
||||||
DEF(AST_Exit, function(self, tw) {
|
|
||||||
|
_(AST_Exit, function(self, tw){
|
||||||
if (self.value) self.value = self.value.transform(tw);
|
if (self.value) self.value = self.value.transform(tw);
|
||||||
});
|
});
|
||||||
DEF(AST_LoopControl, function(self, tw) {
|
|
||||||
|
_(AST_LoopControl, function(self, tw){
|
||||||
if (self.label) self.label = self.label.transform(tw);
|
if (self.label) self.label = self.label.transform(tw);
|
||||||
});
|
});
|
||||||
DEF(AST_If, function(self, tw) {
|
|
||||||
|
_(AST_If, function(self, tw){
|
||||||
self.condition = self.condition.transform(tw);
|
self.condition = self.condition.transform(tw);
|
||||||
self.body = self.body.transform(tw);
|
self.body = self.body.transform(tw);
|
||||||
if (self.alternative) self.alternative = self.alternative.transform(tw);
|
if (self.alternative) self.alternative = self.alternative.transform(tw);
|
||||||
});
|
});
|
||||||
DEF(AST_Switch, function(self, tw) {
|
|
||||||
|
_(AST_Switch, function(self, tw){
|
||||||
self.expression = self.expression.transform(tw);
|
self.expression = self.expression.transform(tw);
|
||||||
self.body = do_list(self.body, tw);
|
self.body = do_list(self.body, tw);
|
||||||
});
|
});
|
||||||
DEF(AST_Case, function(self, tw) {
|
|
||||||
|
_(AST_Case, function(self, tw){
|
||||||
self.expression = self.expression.transform(tw);
|
self.expression = self.expression.transform(tw);
|
||||||
self.body = do_list(self.body, tw);
|
self.body = do_list(self.body, tw);
|
||||||
});
|
});
|
||||||
DEF(AST_Try, function(self, tw) {
|
|
||||||
|
_(AST_Try, function(self, tw){
|
||||||
self.body = do_list(self.body, tw);
|
self.body = do_list(self.body, tw);
|
||||||
if (self.bcatch) self.bcatch = self.bcatch.transform(tw);
|
if (self.bcatch) self.bcatch = self.bcatch.transform(tw);
|
||||||
if (self.bfinally) self.bfinally = self.bfinally.transform(tw);
|
if (self.bfinally) self.bfinally = self.bfinally.transform(tw);
|
||||||
});
|
});
|
||||||
DEF(AST_Catch, function(self, tw) {
|
|
||||||
|
_(AST_Catch, function(self, tw){
|
||||||
self.argname = self.argname.transform(tw);
|
self.argname = self.argname.transform(tw);
|
||||||
self.body = do_list(self.body, tw);
|
self.body = do_list(self.body, tw);
|
||||||
});
|
});
|
||||||
DEF(AST_Definitions, function(self, tw) {
|
|
||||||
|
_(AST_Definitions, function(self, tw){
|
||||||
self.definitions = do_list(self.definitions, tw);
|
self.definitions = do_list(self.definitions, tw);
|
||||||
});
|
});
|
||||||
DEF(AST_VarDef, function(self, tw) {
|
|
||||||
|
_(AST_VarDef, function(self, tw){
|
||||||
self.name = self.name.transform(tw);
|
self.name = self.name.transform(tw);
|
||||||
if (self.value) self.value = self.value.transform(tw);
|
if (self.value) self.value = self.value.transform(tw);
|
||||||
});
|
});
|
||||||
DEF(AST_Lambda, function(self, tw) {
|
|
||||||
|
_(AST_Lambda, function(self, tw){
|
||||||
if (self.name) self.name = self.name.transform(tw);
|
if (self.name) self.name = self.name.transform(tw);
|
||||||
self.argnames = do_list(self.argnames, tw);
|
self.argnames = do_list(self.argnames, tw);
|
||||||
self.body = do_list(self.body, tw);
|
self.body = do_list(self.body, tw);
|
||||||
});
|
});
|
||||||
DEF(AST_Call, function(self, tw) {
|
|
||||||
|
_(AST_Call, function(self, tw){
|
||||||
self.expression = self.expression.transform(tw);
|
self.expression = self.expression.transform(tw);
|
||||||
self.args = do_list(self.args, tw);
|
self.args = do_list(self.args, tw);
|
||||||
});
|
});
|
||||||
DEF(AST_Sequence, function(self, tw) {
|
|
||||||
self.expressions = do_list(self.expressions, tw);
|
_(AST_Seq, function(self, tw){
|
||||||
|
self.car = self.car.transform(tw);
|
||||||
|
self.cdr = self.cdr.transform(tw);
|
||||||
});
|
});
|
||||||
DEF(AST_Dot, function(self, tw) {
|
|
||||||
|
_(AST_Dot, function(self, tw){
|
||||||
self.expression = self.expression.transform(tw);
|
self.expression = self.expression.transform(tw);
|
||||||
});
|
});
|
||||||
DEF(AST_Sub, function(self, tw) {
|
|
||||||
|
_(AST_Sub, function(self, tw){
|
||||||
self.expression = self.expression.transform(tw);
|
self.expression = self.expression.transform(tw);
|
||||||
self.property = self.property.transform(tw);
|
self.property = self.property.transform(tw);
|
||||||
});
|
});
|
||||||
DEF(AST_Unary, function(self, tw) {
|
|
||||||
|
_(AST_Unary, function(self, tw){
|
||||||
self.expression = self.expression.transform(tw);
|
self.expression = self.expression.transform(tw);
|
||||||
});
|
});
|
||||||
DEF(AST_Binary, function(self, tw) {
|
|
||||||
|
_(AST_Binary, function(self, tw){
|
||||||
self.left = self.left.transform(tw);
|
self.left = self.left.transform(tw);
|
||||||
self.right = self.right.transform(tw);
|
self.right = self.right.transform(tw);
|
||||||
});
|
});
|
||||||
DEF(AST_Conditional, function(self, tw) {
|
|
||||||
|
_(AST_Conditional, function(self, tw){
|
||||||
self.condition = self.condition.transform(tw);
|
self.condition = self.condition.transform(tw);
|
||||||
self.consequent = self.consequent.transform(tw);
|
self.consequent = self.consequent.transform(tw);
|
||||||
self.alternative = self.alternative.transform(tw);
|
self.alternative = self.alternative.transform(tw);
|
||||||
});
|
});
|
||||||
DEF(AST_Array, function(self, tw) {
|
|
||||||
|
_(AST_Array, function(self, tw){
|
||||||
self.elements = do_list(self.elements, tw);
|
self.elements = do_list(self.elements, tw);
|
||||||
});
|
});
|
||||||
DEF(AST_Object, function(self, tw) {
|
|
||||||
|
_(AST_Object, function(self, tw){
|
||||||
self.properties = do_list(self.properties, tw);
|
self.properties = do_list(self.properties, tw);
|
||||||
});
|
});
|
||||||
DEF(AST_ObjectProperty, function(self, tw) {
|
|
||||||
|
_(AST_ObjectProperty, function(self, tw){
|
||||||
self.value = self.value.transform(tw);
|
self.value = self.value.transform(tw);
|
||||||
});
|
});
|
||||||
})(function(node, descend) {
|
|
||||||
node.DEFMETHOD("transform", function(tw, in_list) {
|
})();
|
||||||
var x, y;
|
|
||||||
tw.push(this);
|
|
||||||
if (tw.before) x = tw.before(this, descend, in_list);
|
|
||||||
if (typeof x === "undefined") {
|
|
||||||
x = this;
|
|
||||||
descend(x, tw);
|
|
||||||
if (tw.after) {
|
|
||||||
y = tw.after(x, in_list);
|
|
||||||
if (typeof y !== "undefined") x = y;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
tw.pop();
|
|
||||||
return x;
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|||||||
211
lib/utils.js
211
lib/utils.js
@@ -43,25 +43,40 @@
|
|||||||
|
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
|
function array_to_hash(a) {
|
||||||
|
var ret = Object.create(null);
|
||||||
|
for (var i = 0; i < a.length; ++i)
|
||||||
|
ret[a[i]] = true;
|
||||||
|
return ret;
|
||||||
|
};
|
||||||
|
|
||||||
|
function slice(a, start) {
|
||||||
|
return Array.prototype.slice.call(a, start || 0);
|
||||||
|
};
|
||||||
|
|
||||||
function characters(str) {
|
function characters(str) {
|
||||||
return str.split("");
|
return str.split("");
|
||||||
}
|
};
|
||||||
|
|
||||||
function member(name, array) {
|
function member(name, array) {
|
||||||
return array.indexOf(name) >= 0;
|
return array.indexOf(name) >= 0;
|
||||||
}
|
};
|
||||||
|
|
||||||
function find_if(func, array) {
|
function find_if(func, array) {
|
||||||
for (var i = array.length; --i >= 0;) if (func(array[i])) return array[i];
|
for (var i = 0, n = array.length; i < n; ++i) {
|
||||||
}
|
if (func(array[i]))
|
||||||
|
return array[i];
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
function repeat_string(str, i) {
|
function repeat_string(str, i) {
|
||||||
if (i <= 0) return "";
|
if (i <= 0) return "";
|
||||||
if (i == 1) return str;
|
if (i == 1) return str;
|
||||||
var d = repeat_string(str, i >> 1);
|
var d = repeat_string(str, i >> 1);
|
||||||
d += d;
|
d += d;
|
||||||
return i & 1 ? d + str : d;
|
if (i & 1) d += str;
|
||||||
}
|
return d;
|
||||||
|
};
|
||||||
|
|
||||||
function configure_error_stack(fn) {
|
function configure_error_stack(fn) {
|
||||||
Object.defineProperty(fn.prototype, "stack", {
|
Object.defineProperty(fn.prototype, "stack", {
|
||||||
@@ -70,7 +85,7 @@ function configure_error_stack(fn) {
|
|||||||
err.name = this.name;
|
err.name = this.name;
|
||||||
try {
|
try {
|
||||||
throw err;
|
throw err;
|
||||||
} catch (e) {
|
} catch(e) {
|
||||||
return e.stack;
|
return e.stack;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -80,23 +95,27 @@ function configure_error_stack(fn) {
|
|||||||
function DefaultsError(msg, defs) {
|
function DefaultsError(msg, defs) {
|
||||||
this.message = msg;
|
this.message = msg;
|
||||||
this.defs = defs;
|
this.defs = defs;
|
||||||
}
|
};
|
||||||
DefaultsError.prototype = Object.create(Error.prototype);
|
DefaultsError.prototype = Object.create(Error.prototype);
|
||||||
DefaultsError.prototype.constructor = DefaultsError;
|
DefaultsError.prototype.constructor = DefaultsError;
|
||||||
DefaultsError.prototype.name = "DefaultsError";
|
DefaultsError.prototype.name = "DefaultsError";
|
||||||
configure_error_stack(DefaultsError);
|
configure_error_stack(DefaultsError);
|
||||||
|
|
||||||
|
DefaultsError.croak = function(msg, defs) {
|
||||||
|
throw new DefaultsError(msg, defs);
|
||||||
|
};
|
||||||
|
|
||||||
function defaults(args, defs, croak) {
|
function defaults(args, defs, croak) {
|
||||||
if (args === true) args = {};
|
if (args === true)
|
||||||
|
args = {};
|
||||||
var ret = args || {};
|
var ret = args || {};
|
||||||
if (croak) for (var i in ret) if (HOP(ret, i) && !HOP(defs, i)) {
|
if (croak) for (var i in ret) if (HOP(ret, i) && !HOP(defs, i))
|
||||||
throw new DefaultsError("`" + i + "` is not a supported option", defs);
|
DefaultsError.croak("`" + i + "` is not a supported option", defs);
|
||||||
}
|
|
||||||
for (var i in defs) if (HOP(defs, i)) {
|
for (var i in defs) if (HOP(defs, i)) {
|
||||||
ret[i] = (args && HOP(args, i)) ? args[i] : defs[i];
|
ret[i] = (args && HOP(args, i)) ? args[i] : defs[i];
|
||||||
}
|
}
|
||||||
return ret;
|
return ret;
|
||||||
}
|
};
|
||||||
|
|
||||||
function merge(obj, ext) {
|
function merge(obj, ext) {
|
||||||
var count = 0;
|
var count = 0;
|
||||||
@@ -105,7 +124,7 @@ function merge(obj, ext) {
|
|||||||
count++;
|
count++;
|
||||||
}
|
}
|
||||||
return count;
|
return count;
|
||||||
}
|
};
|
||||||
|
|
||||||
function noop() {}
|
function noop() {}
|
||||||
function return_false() { return false; }
|
function return_false() { return false; }
|
||||||
@@ -113,7 +132,7 @@ function return_true() { return true; }
|
|||||||
function return_this() { return this; }
|
function return_this() { return this; }
|
||||||
function return_null() { return null; }
|
function return_null() { return null; }
|
||||||
|
|
||||||
var MAP = (function() {
|
var MAP = (function(){
|
||||||
function MAP(a, f, backwards) {
|
function MAP(a, f, backwards) {
|
||||||
var ret = [], top = [], i;
|
var ret = [], top = [], i;
|
||||||
function doit() {
|
function doit() {
|
||||||
@@ -127,7 +146,8 @@ var MAP = (function() {
|
|||||||
} else {
|
} else {
|
||||||
top.push(val);
|
top.push(val);
|
||||||
}
|
}
|
||||||
} else if (val !== skip) {
|
}
|
||||||
|
else if (val !== skip) {
|
||||||
if (val instanceof Splice) {
|
if (val instanceof Splice) {
|
||||||
ret.push.apply(ret, backwards ? val.v.slice().reverse() : val.v);
|
ret.push.apply(ret, backwards ? val.v.slice().reverse() : val.v);
|
||||||
} else {
|
} else {
|
||||||
@@ -135,8 +155,8 @@ var MAP = (function() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
return is_last;
|
return is_last;
|
||||||
}
|
};
|
||||||
if (Array.isArray(a)) {
|
if (a instanceof Array) {
|
||||||
if (backwards) {
|
if (backwards) {
|
||||||
for (i = a.length; --i >= 0;) if (doit()) break;
|
for (i = a.length; --i >= 0;) if (doit()) break;
|
||||||
ret.reverse();
|
ret.reverse();
|
||||||
@@ -144,56 +164,132 @@ var MAP = (function() {
|
|||||||
} else {
|
} else {
|
||||||
for (i = 0; i < a.length; ++i) if (doit()) break;
|
for (i = 0; i < a.length; ++i) if (doit()) break;
|
||||||
}
|
}
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
for (i in a) if (HOP(a, i)) if (doit()) break;
|
for (i in a) if (HOP(a, i)) if (doit()) break;
|
||||||
}
|
}
|
||||||
return top.concat(ret);
|
return top.concat(ret);
|
||||||
}
|
};
|
||||||
MAP.at_top = function(val) { return new AtTop(val) };
|
MAP.at_top = function(val) { return new AtTop(val) };
|
||||||
MAP.splice = function(val) { return new Splice(val) };
|
MAP.splice = function(val) { return new Splice(val) };
|
||||||
MAP.last = function(val) { return new Last(val) };
|
MAP.last = function(val) { return new Last(val) };
|
||||||
var skip = MAP.skip = {};
|
var skip = MAP.skip = {};
|
||||||
function AtTop(val) { this.v = val }
|
function AtTop(val) { this.v = val };
|
||||||
function Splice(val) { this.v = val }
|
function Splice(val) { this.v = val };
|
||||||
function Last(val) { this.v = val }
|
function Last(val) { this.v = val };
|
||||||
return MAP;
|
return MAP;
|
||||||
})();
|
})();
|
||||||
|
|
||||||
function push_uniq(array, el) {
|
function push_uniq(array, el) {
|
||||||
if (array.indexOf(el) < 0) return array.push(el);
|
if (array.indexOf(el) < 0)
|
||||||
}
|
array.push(el);
|
||||||
|
};
|
||||||
|
|
||||||
function string_template(text, props) {
|
function string_template(text, props) {
|
||||||
return text.replace(/\{(.+?)\}/g, function(str, p) {
|
return text.replace(/\{(.+?)\}/g, function(str, p){
|
||||||
return props && props[p];
|
return props && props[p];
|
||||||
});
|
});
|
||||||
}
|
};
|
||||||
|
|
||||||
function remove(array, el) {
|
function remove(array, el) {
|
||||||
var index = array.indexOf(el);
|
for (var i = array.length; --i >= 0;) {
|
||||||
if (index >= 0) array.splice(index, 1);
|
if (array[i] === el) array.splice(i, 1);
|
||||||
}
|
}
|
||||||
|
};
|
||||||
|
|
||||||
function makePredicate(words) {
|
function mergeSort(array, cmp) {
|
||||||
if (!Array.isArray(words)) words = words.split(" ");
|
if (array.length < 2) return array.slice();
|
||||||
var map = Object.create(null);
|
function merge(a, b) {
|
||||||
words.forEach(function(word) {
|
var r = [], ai = 0, bi = 0, i = 0;
|
||||||
map[word] = true;
|
while (ai < a.length && bi < b.length) {
|
||||||
|
cmp(a[ai], b[bi]) <= 0
|
||||||
|
? r[i++] = a[ai++]
|
||||||
|
: r[i++] = b[bi++];
|
||||||
|
}
|
||||||
|
if (ai < a.length) r.push.apply(r, a.slice(ai));
|
||||||
|
if (bi < b.length) r.push.apply(r, b.slice(bi));
|
||||||
|
return r;
|
||||||
|
};
|
||||||
|
function _ms(a) {
|
||||||
|
if (a.length <= 1)
|
||||||
|
return a;
|
||||||
|
var m = Math.floor(a.length / 2), left = a.slice(0, m), right = a.slice(m);
|
||||||
|
left = _ms(left);
|
||||||
|
right = _ms(right);
|
||||||
|
return merge(left, right);
|
||||||
|
};
|
||||||
|
return _ms(array);
|
||||||
|
};
|
||||||
|
|
||||||
|
function set_difference(a, b) {
|
||||||
|
return a.filter(function(el){
|
||||||
|
return b.indexOf(el) < 0;
|
||||||
});
|
});
|
||||||
return map;
|
};
|
||||||
}
|
|
||||||
|
function set_intersection(a, b) {
|
||||||
|
return a.filter(function(el){
|
||||||
|
return b.indexOf(el) >= 0;
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
// this function is taken from Acorn [1], written by Marijn Haverbeke
|
||||||
|
// [1] https://github.com/marijnh/acorn
|
||||||
|
function makePredicate(words) {
|
||||||
|
if (!(words instanceof Array)) words = words.split(" ");
|
||||||
|
var f = "", cats = [];
|
||||||
|
out: for (var i = 0; i < words.length; ++i) {
|
||||||
|
for (var j = 0; j < cats.length; ++j)
|
||||||
|
if (cats[j][0].length == words[i].length) {
|
||||||
|
cats[j].push(words[i]);
|
||||||
|
continue out;
|
||||||
|
}
|
||||||
|
cats.push([words[i]]);
|
||||||
|
}
|
||||||
|
function quote(word) {
|
||||||
|
return JSON.stringify(word).replace(/[\u2028\u2029]/g, function(s) {
|
||||||
|
switch (s) {
|
||||||
|
case "\u2028": return "\\u2028";
|
||||||
|
case "\u2029": return "\\u2029";
|
||||||
|
}
|
||||||
|
return s;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function compareTo(arr) {
|
||||||
|
if (arr.length == 1) return f += "return str === " + quote(arr[0]) + ";";
|
||||||
|
f += "switch(str){";
|
||||||
|
for (var i = 0; i < arr.length; ++i) f += "case " + quote(arr[i]) + ":";
|
||||||
|
f += "return true}return false;";
|
||||||
|
}
|
||||||
|
// When there are more than three length categories, an outer
|
||||||
|
// switch first dispatches on the lengths, to save on comparisons.
|
||||||
|
if (cats.length > 3) {
|
||||||
|
cats.sort(function(a, b) {return b.length - a.length;});
|
||||||
|
f += "switch(str.length){";
|
||||||
|
for (var i = 0; i < cats.length; ++i) {
|
||||||
|
var cat = cats[i];
|
||||||
|
f += "case " + cat[0].length + ":";
|
||||||
|
compareTo(cat);
|
||||||
|
}
|
||||||
|
f += "}";
|
||||||
|
// Otherwise, simply generate a flat `switch` statement.
|
||||||
|
} else {
|
||||||
|
compareTo(words);
|
||||||
|
}
|
||||||
|
return new Function("str", f);
|
||||||
|
};
|
||||||
|
|
||||||
function all(array, predicate) {
|
function all(array, predicate) {
|
||||||
for (var i = array.length; --i >= 0;)
|
for (var i = array.length; --i >= 0;)
|
||||||
if (!predicate(array[i]))
|
if (!predicate(array[i]))
|
||||||
return false;
|
return false;
|
||||||
return true;
|
return true;
|
||||||
}
|
};
|
||||||
|
|
||||||
function Dictionary() {
|
function Dictionary() {
|
||||||
this._values = Object.create(null);
|
this._values = Object.create(null);
|
||||||
this._size = 0;
|
this._size = 0;
|
||||||
}
|
};
|
||||||
Dictionary.prototype = {
|
Dictionary.prototype = {
|
||||||
set: function(key, val) {
|
set: function(key, val) {
|
||||||
if (!this.has(key)) ++this._size;
|
if (!this.has(key)) ++this._size;
|
||||||
@@ -230,13 +326,6 @@ Dictionary.prototype = {
|
|||||||
ret.push(f(this._values[i], i.substr(1)));
|
ret.push(f(this._values[i], i.substr(1)));
|
||||||
return ret;
|
return ret;
|
||||||
},
|
},
|
||||||
clone: function() {
|
|
||||||
var ret = new Dictionary();
|
|
||||||
for (var i in this._values)
|
|
||||||
ret._values[i] = this._values[i];
|
|
||||||
ret._size = this._size;
|
|
||||||
return ret;
|
|
||||||
},
|
|
||||||
toObject: function() { return this._values }
|
toObject: function() { return this._values }
|
||||||
};
|
};
|
||||||
Dictionary.fromObject = function(obj) {
|
Dictionary.fromObject = function(obj) {
|
||||||
@@ -254,22 +343,20 @@ function HOP(obj, prop) {
|
|||||||
// a statement.
|
// a statement.
|
||||||
function first_in_statement(stack) {
|
function first_in_statement(stack) {
|
||||||
var node = stack.parent(-1);
|
var node = stack.parent(-1);
|
||||||
for (var i = 0, p; p = stack.parent(i++); node = p) {
|
for (var i = 0, p; p = stack.parent(i); i++) {
|
||||||
if (p.TYPE == "Call") {
|
if (p instanceof AST_Statement && p.body === node)
|
||||||
if (p.expression === node) continue;
|
return true;
|
||||||
} else if (p instanceof AST_Binary) {
|
if ((p instanceof AST_Seq && p.car === node ) ||
|
||||||
if (p.left === node) continue;
|
(p instanceof AST_Call && p.expression === node && !(p instanceof AST_New) ) ||
|
||||||
} else if (p instanceof AST_Conditional) {
|
(p instanceof AST_Dot && p.expression === node ) ||
|
||||||
if (p.condition === node) continue;
|
(p instanceof AST_Sub && p.expression === node ) ||
|
||||||
} else if (p instanceof AST_PropAccess) {
|
(p instanceof AST_Conditional && p.condition === node ) ||
|
||||||
if (p.expression === node) continue;
|
(p instanceof AST_Binary && p.left === node ) ||
|
||||||
} else if (p instanceof AST_Sequence) {
|
(p instanceof AST_UnaryPostfix && p.expression === node ))
|
||||||
if (p.expressions[0] === node) continue;
|
{
|
||||||
} else if (p instanceof AST_Statement) {
|
node = p;
|
||||||
return p.body === node;
|
} else {
|
||||||
} else if (p instanceof AST_UnaryPostfix) {
|
return false;
|
||||||
if (p.expression === node) continue;
|
|
||||||
}
|
}
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
55
package.json
55
package.json
@@ -1,17 +1,23 @@
|
|||||||
{
|
{
|
||||||
"name": "uglify-js",
|
"name": "uglify-js",
|
||||||
"description": "JavaScript parser, mangler/compressor and beautifier toolkit",
|
"description": "JavaScript parser, mangler/compressor and beautifier toolkit",
|
||||||
|
"homepage": "http://lisperator.net/uglifyjs",
|
||||||
"author": "Mihai Bazon <mihai.bazon@gmail.com> (http://lisperator.net/)",
|
"author": "Mihai Bazon <mihai.bazon@gmail.com> (http://lisperator.net/)",
|
||||||
"license": "BSD-2-Clause",
|
"license": "BSD-2-Clause",
|
||||||
"version": "3.7.2",
|
"version": "2.8.26",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=0.8.0"
|
"node": ">=0.8.0"
|
||||||
},
|
},
|
||||||
"maintainers": [
|
"maintainers": [
|
||||||
"Alex Lam <alexlamsl@gmail.com>",
|
|
||||||
"Mihai Bazon <mihai.bazon@gmail.com> (http://lisperator.net/)"
|
"Mihai Bazon <mihai.bazon@gmail.com> (http://lisperator.net/)"
|
||||||
],
|
],
|
||||||
"repository": "mishoo/UglifyJS2",
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/mishoo/UglifyJS2.git"
|
||||||
|
},
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/mishoo/UglifyJS2/issues"
|
||||||
|
},
|
||||||
"main": "tools/node.js",
|
"main": "tools/node.js",
|
||||||
"bin": {
|
"bin": {
|
||||||
"uglifyjs": "bin/uglifyjs"
|
"uglifyjs": "bin/uglifyjs"
|
||||||
@@ -23,38 +29,23 @@
|
|||||||
"LICENSE"
|
"LICENSE"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"commander": "~2.20.3",
|
"source-map": "~0.5.1",
|
||||||
"source-map": "~0.6.1"
|
"yargs": "~3.10.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"acorn": "~7.1.0",
|
"acorn": "~5.0.3",
|
||||||
"semver": "~6.3.0"
|
"mocha": "~2.3.4"
|
||||||
|
},
|
||||||
|
"optionalDependencies": {
|
||||||
|
"uglify-to-browserify": "~1.0.0"
|
||||||
|
},
|
||||||
|
"browserify": {
|
||||||
|
"transform": [
|
||||||
|
"uglify-to-browserify"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "node test/compress.js && node test/mocha.js"
|
"test": "node test/run-tests.js"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": ["uglify", "uglify-js", "minify", "minifier"]
|
||||||
"cli",
|
|
||||||
"compress",
|
|
||||||
"compressor",
|
|
||||||
"ecma",
|
|
||||||
"ecmascript",
|
|
||||||
"es",
|
|
||||||
"es5",
|
|
||||||
"javascript",
|
|
||||||
"js",
|
|
||||||
"jsmin",
|
|
||||||
"min",
|
|
||||||
"minification",
|
|
||||||
"minifier",
|
|
||||||
"minify",
|
|
||||||
"optimize",
|
|
||||||
"optimizer",
|
|
||||||
"pack",
|
|
||||||
"packer",
|
|
||||||
"parse",
|
|
||||||
"parser",
|
|
||||||
"uglifier",
|
|
||||||
"uglify"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,46 +4,43 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
var createHash = require("crypto").createHash;
|
var createHash = require("crypto").createHash;
|
||||||
var fetch = require("./fetch");
|
|
||||||
var fork = require("child_process").fork;
|
var fork = require("child_process").fork;
|
||||||
var zlib = require("zlib");
|
|
||||||
var args = process.argv.slice(2);
|
var args = process.argv.slice(2);
|
||||||
if (!args.length) {
|
if (!args.length) {
|
||||||
args.push("-mc");
|
args.push("-mc", "warnings=false");
|
||||||
}
|
}
|
||||||
args.push("--timings");
|
args.push("--stats");
|
||||||
var urls = [
|
var urls = [
|
||||||
"https://code.jquery.com/jquery-3.4.1.js",
|
"https://code.jquery.com/jquery-3.2.1.js",
|
||||||
"https://code.angularjs.org/1.7.8/angular.js",
|
"https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.6.4/angular.js",
|
||||||
"https://unpkg.com/mathjs@6.2.3/dist/math.js",
|
"https://cdnjs.cloudflare.com/ajax/libs/mathjs/3.9.0/math.js",
|
||||||
"https://unpkg.com/react@15.3.2/dist/react.js",
|
|
||||||
"https://cdnjs.cloudflare.com/ajax/libs/d3/5.12.0/d3.js",
|
|
||||||
"https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.js",
|
"https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.js",
|
||||||
"https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.15/lodash.js",
|
"https://unpkg.com/react@15.3.2/dist/react.js",
|
||||||
"https://cdnjs.cloudflare.com/ajax/libs/ember.js/2.12.2/ember.prod.js",
|
"http://builds.emberjs.com/tags/v2.11.0/ember.prod.js",
|
||||||
"https://raw.githubusercontent.com/kangax/html-minifier/v4.0.0/dist/htmlminifier.js",
|
"https://cdn.jsdelivr.net/lodash/4.17.4/lodash.js",
|
||||||
|
"https://cdnjs.cloudflare.com/ajax/libs/d3/4.5.0/d3.js",
|
||||||
];
|
];
|
||||||
var results = {};
|
var results = {};
|
||||||
var remaining = 2 * urls.length;
|
var remaining = 2 * urls.length;
|
||||||
function done() {
|
function done() {
|
||||||
if (!--remaining) {
|
if (!--remaining) {
|
||||||
var failures = [];
|
var failures = [];
|
||||||
var sum = { input: 0, output: 0, gzip: 0 };
|
|
||||||
urls.forEach(function(url) {
|
urls.forEach(function(url) {
|
||||||
var info = results[url];
|
var info = results[url];
|
||||||
console.log();
|
console.log();
|
||||||
console.log(url);
|
console.log(url);
|
||||||
console.log(info.log);
|
console.log(info.log);
|
||||||
|
var elapsed = 0;
|
||||||
|
info.log.replace(/: ([0-9]+\.[0-9]{3})s/g, function(match, time) {
|
||||||
|
elapsed += parseFloat(time);
|
||||||
|
});
|
||||||
|
console.log("Run-time:", elapsed.toFixed(3), "s");
|
||||||
console.log("Original:", info.input, "bytes");
|
console.log("Original:", info.input, "bytes");
|
||||||
console.log("Uglified:", info.output, "bytes");
|
console.log("Uglified:", info.output, "bytes");
|
||||||
console.log("GZipped: ", info.gzip, "bytes");
|
|
||||||
console.log("SHA1 sum:", info.sha1);
|
console.log("SHA1 sum:", info.sha1);
|
||||||
if (info.code) {
|
if (info.code) {
|
||||||
failures.push(url);
|
failures.push(url);
|
||||||
}
|
}
|
||||||
sum.input += info.input;
|
|
||||||
sum.output += info.output;
|
|
||||||
sum.gzip += info.gzip;
|
|
||||||
});
|
});
|
||||||
if (failures.length) {
|
if (failures.length) {
|
||||||
console.error("Benchmark failed:");
|
console.error("Benchmark failed:");
|
||||||
@@ -51,13 +48,6 @@ function done() {
|
|||||||
console.error(url);
|
console.error(url);
|
||||||
});
|
});
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
} else {
|
|
||||||
console.log();
|
|
||||||
console.log("Subtotal");
|
|
||||||
console.log();
|
|
||||||
console.log("Original:", sum.input, "bytes");
|
|
||||||
console.log("Uglified:", sum.output, "bytes");
|
|
||||||
console.log("GZipped: ", sum.gzip, "bytes");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -65,21 +55,15 @@ urls.forEach(function(url) {
|
|||||||
results[url] = {
|
results[url] = {
|
||||||
input: 0,
|
input: 0,
|
||||||
output: 0,
|
output: 0,
|
||||||
gzip: 0,
|
|
||||||
log: ""
|
log: ""
|
||||||
};
|
};
|
||||||
fetch(url, function(err, res) {
|
require(url.slice(0, url.indexOf(":"))).get(url, function(res) {
|
||||||
if (err) throw err;
|
|
||||||
var uglifyjs = fork("bin/uglifyjs", args, { silent: true });
|
var uglifyjs = fork("bin/uglifyjs", args, { silent: true });
|
||||||
res.on("data", function(data) {
|
res.on("data", function(data) {
|
||||||
results[url].input += data.length;
|
results[url].input += data.length;
|
||||||
}).pipe(uglifyjs.stdin);
|
}).pipe(uglifyjs.stdin);
|
||||||
uglifyjs.stdout.on("data", function(data) {
|
uglifyjs.stdout.on("data", function(data) {
|
||||||
results[url].output += data.length;
|
results[url].output += data.length;
|
||||||
}).pipe(zlib.createGzip({
|
|
||||||
level: zlib.Z_BEST_COMPRESSION
|
|
||||||
})).on("data", function(data) {
|
|
||||||
results[url].gzip += data.length;
|
|
||||||
}).pipe(createHash("sha1")).on("data", function(data) {
|
}).pipe(createHash("sha1")).on("data", function(data) {
|
||||||
results[url].sha1 = data.toString("hex");
|
results[url].sha1 = data.toString("hex");
|
||||||
done();
|
done();
|
||||||
|
|||||||
454
test/compress.js
454
test/compress.js
@@ -1,454 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
|
|
||||||
require("../tools/exit");
|
|
||||||
|
|
||||||
var assert = require("assert");
|
|
||||||
var child_process = require("child_process");
|
|
||||||
var fs = require("fs");
|
|
||||||
var path = require("path");
|
|
||||||
var sandbox = require("./sandbox");
|
|
||||||
var semver = require("semver");
|
|
||||||
var U = require("./node");
|
|
||||||
|
|
||||||
var file = process.argv[2];
|
|
||||||
var dir = path.resolve(path.dirname(module.filename), "compress");
|
|
||||||
if (file) {
|
|
||||||
var minify_options = require("./ufuzz/options.json").map(JSON.stringify);
|
|
||||||
log("--- {file}", { file: file });
|
|
||||||
var tests = parse_test(path.resolve(dir, file));
|
|
||||||
process.exit(Object.keys(tests).filter(function(name) {
|
|
||||||
return !test_case(tests[name]);
|
|
||||||
}).length);
|
|
||||||
} else {
|
|
||||||
var files = fs.readdirSync(dir).filter(function(name) {
|
|
||||||
return /\.js$/i.test(name);
|
|
||||||
});
|
|
||||||
var failures = 0;
|
|
||||||
var failed_files = Object.create(null);
|
|
||||||
(function next() {
|
|
||||||
var file = files.shift();
|
|
||||||
if (file) {
|
|
||||||
child_process.spawn(process.argv[0], [ process.argv[1], file ], {
|
|
||||||
stdio: [ "ignore", 1, 2 ]
|
|
||||||
}).on("exit", function(code) {
|
|
||||||
if (code) {
|
|
||||||
failures += code;
|
|
||||||
failed_files[file] = code;
|
|
||||||
}
|
|
||||||
next();
|
|
||||||
});
|
|
||||||
} else if (failures) {
|
|
||||||
console.error();
|
|
||||||
console.error("!!! Failed " + failures + " test case(s).");
|
|
||||||
console.error("!!! " + Object.keys(failed_files).join(", "));
|
|
||||||
process.exit(1);
|
|
||||||
}
|
|
||||||
})();
|
|
||||||
}
|
|
||||||
|
|
||||||
function evaluate(code) {
|
|
||||||
if (code instanceof U.AST_Node) code = make_code(code, { beautify: true });
|
|
||||||
return new Function("return(" + code + ")")();
|
|
||||||
}
|
|
||||||
|
|
||||||
function log() {
|
|
||||||
console.log("%s", tmpl.apply(null, arguments));
|
|
||||||
}
|
|
||||||
|
|
||||||
function make_code(ast, options) {
|
|
||||||
var stream = U.OutputStream(options);
|
|
||||||
ast.print(stream);
|
|
||||||
return stream.get();
|
|
||||||
}
|
|
||||||
|
|
||||||
function parse_test(file) {
|
|
||||||
var script = fs.readFileSync(file, "utf8");
|
|
||||||
// TODO try/catch can be removed after fixing https://github.com/mishoo/UglifyJS2/issues/348
|
|
||||||
try {
|
|
||||||
var ast = U.parse(script, {
|
|
||||||
filename: file
|
|
||||||
});
|
|
||||||
} catch (e) {
|
|
||||||
console.error("Caught error while parsing tests in " + file);
|
|
||||||
console.error(e);
|
|
||||||
process.exit(1);
|
|
||||||
}
|
|
||||||
var tests = Object.create(null);
|
|
||||||
var tw = new U.TreeWalker(function(node, descend) {
|
|
||||||
if (node instanceof U.AST_LabeledStatement
|
|
||||||
&& tw.parent() instanceof U.AST_Toplevel) {
|
|
||||||
var name = node.label.name;
|
|
||||||
if (name in tests) {
|
|
||||||
throw new Error('Duplicated test name "' + name + '" in ' + file);
|
|
||||||
}
|
|
||||||
tests[name] = get_one_test(name, node.body);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
if (!(node instanceof U.AST_Toplevel)) croak(node);
|
|
||||||
});
|
|
||||||
ast.walk(tw);
|
|
||||||
return tests;
|
|
||||||
|
|
||||||
function croak(node) {
|
|
||||||
throw new Error(tmpl("Can't understand test file {file} [{line},{col}]\n{code}", {
|
|
||||||
file: file,
|
|
||||||
line: node.start.line,
|
|
||||||
col: node.start.col,
|
|
||||||
code: make_code(node, { beautify: false })
|
|
||||||
}));
|
|
||||||
}
|
|
||||||
|
|
||||||
function read_string(stat) {
|
|
||||||
if (stat.TYPE == "SimpleStatement") {
|
|
||||||
var body = stat.body;
|
|
||||||
switch(body.TYPE) {
|
|
||||||
case "String":
|
|
||||||
return body.value;
|
|
||||||
case "Array":
|
|
||||||
return body.elements.map(function(element) {
|
|
||||||
if (element.TYPE !== "String")
|
|
||||||
throw new Error("Should be array of strings");
|
|
||||||
return element.value;
|
|
||||||
}).join("\n");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
throw new Error("Should be string or array of strings");
|
|
||||||
}
|
|
||||||
|
|
||||||
function get_one_test(name, block) {
|
|
||||||
var test = { name: name, options: {} };
|
|
||||||
var tw = new U.TreeWalker(function(node, descend) {
|
|
||||||
if (node instanceof U.AST_Assign) {
|
|
||||||
if (!(node.left instanceof U.AST_SymbolRef)) {
|
|
||||||
croak(node);
|
|
||||||
}
|
|
||||||
var name = node.left.name;
|
|
||||||
test[name] = evaluate(node.right);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
if (node instanceof U.AST_LabeledStatement) {
|
|
||||||
var label = node.label;
|
|
||||||
assert.ok([
|
|
||||||
"input",
|
|
||||||
"expect",
|
|
||||||
"expect_exact",
|
|
||||||
"expect_warnings",
|
|
||||||
"expect_stdout",
|
|
||||||
"node_version",
|
|
||||||
].indexOf(label.name) >= 0, tmpl("Unsupported label {name} [{line},{col}]", {
|
|
||||||
name: label.name,
|
|
||||||
line: label.start.line,
|
|
||||||
col: label.start.col
|
|
||||||
}));
|
|
||||||
var stat = node.body;
|
|
||||||
if (label.name == "expect_exact" || label.name == "node_version") {
|
|
||||||
test[label.name] = read_string(stat);
|
|
||||||
} else if (label.name == "expect_stdout") {
|
|
||||||
var body = stat.body;
|
|
||||||
if (body instanceof U.AST_Boolean) {
|
|
||||||
test[label.name] = body.value;
|
|
||||||
} else if (body instanceof U.AST_Call) {
|
|
||||||
var ctor = global[body.expression.name];
|
|
||||||
assert.ok(ctor === Error || ctor.prototype instanceof Error, tmpl("Unsupported expect_stdout format [{line},{col}]", {
|
|
||||||
line: label.start.line,
|
|
||||||
col: label.start.col
|
|
||||||
}));
|
|
||||||
test[label.name] = ctor.apply(null, body.args.map(function(node) {
|
|
||||||
assert.ok(node instanceof U.AST_Constant, tmpl("Unsupported expect_stdout format [{line},{col}]", {
|
|
||||||
line: label.start.line,
|
|
||||||
col: label.start.col
|
|
||||||
}));
|
|
||||||
return node.value;
|
|
||||||
}));
|
|
||||||
} else {
|
|
||||||
test[label.name] = read_string(stat) + "\n";
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
test[label.name] = stat;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
block.walk(tw);
|
|
||||||
return test;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Try to reminify original input with standard options
|
|
||||||
// to see if it matches expect_stdout.
|
|
||||||
function reminify(orig_options, input_code, input_formatted, stdout) {
|
|
||||||
for (var i = 0; i < minify_options.length; i++) {
|
|
||||||
var options = JSON.parse(minify_options[i]);
|
|
||||||
if (options.compress) [
|
|
||||||
"keep_fargs",
|
|
||||||
"keep_fnames",
|
|
||||||
].forEach(function(name) {
|
|
||||||
if (name in orig_options) {
|
|
||||||
options.compress[name] = orig_options[name];
|
|
||||||
}
|
|
||||||
});
|
|
||||||
var options_formatted = JSON.stringify(options, null, 4);
|
|
||||||
var result = U.minify(input_code, options);
|
|
||||||
if (result.error) {
|
|
||||||
log([
|
|
||||||
"!!! failed input reminify",
|
|
||||||
"---INPUT---",
|
|
||||||
"{input}",
|
|
||||||
"---OPTIONS---",
|
|
||||||
"{options}",
|
|
||||||
"--ERROR---",
|
|
||||||
"{error}",
|
|
||||||
"",
|
|
||||||
"",
|
|
||||||
].join("\n"), {
|
|
||||||
input: input_formatted,
|
|
||||||
options: options_formatted,
|
|
||||||
error: result.error,
|
|
||||||
});
|
|
||||||
return false;
|
|
||||||
} else {
|
|
||||||
var expected = stdout[options.toplevel ? 1 : 0];
|
|
||||||
var actual = run_code(result.code, options.toplevel);
|
|
||||||
if (typeof expected != "string" && typeof actual != "string" && expected.name == actual.name) {
|
|
||||||
actual = expected;
|
|
||||||
}
|
|
||||||
if (!sandbox.same_stdout(expected, actual)) {
|
|
||||||
log([
|
|
||||||
"!!! failed running reminified input",
|
|
||||||
"---INPUT---",
|
|
||||||
"{input}",
|
|
||||||
"---OPTIONS---",
|
|
||||||
"{options}",
|
|
||||||
"---OUTPUT---",
|
|
||||||
"{output}",
|
|
||||||
"---EXPECTED {expected_type}---",
|
|
||||||
"{expected}",
|
|
||||||
"---ACTUAL {actual_type}---",
|
|
||||||
"{actual}",
|
|
||||||
"",
|
|
||||||
"",
|
|
||||||
].join("\n"), {
|
|
||||||
input: input_formatted,
|
|
||||||
options: options_formatted,
|
|
||||||
output: result.code,
|
|
||||||
expected_type: typeof expected == "string" ? "STDOUT" : "ERROR",
|
|
||||||
expected: expected,
|
|
||||||
actual_type: typeof actual == "string" ? "STDOUT" : "ERROR",
|
|
||||||
actual: actual,
|
|
||||||
});
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
function run_code(code, toplevel) {
|
|
||||||
var result = sandbox.run_code(code, toplevel);
|
|
||||||
return typeof result == "string" ? result.replace(/\u001b\[\d+m/g, "") : result;
|
|
||||||
}
|
|
||||||
|
|
||||||
function test_case(test) {
|
|
||||||
log(" Running test [{name}]", { name: test.name });
|
|
||||||
var output_options = test.beautify || {};
|
|
||||||
var expect;
|
|
||||||
if (test.expect) {
|
|
||||||
expect = make_code(to_toplevel(test.expect, test.mangle), output_options);
|
|
||||||
} else {
|
|
||||||
expect = test.expect_exact;
|
|
||||||
}
|
|
||||||
var input = to_toplevel(test.input, test.mangle);
|
|
||||||
var input_code = make_code(input);
|
|
||||||
var input_formatted = make_code(test.input, {
|
|
||||||
beautify: true,
|
|
||||||
comments: "all",
|
|
||||||
keep_quoted_props: true,
|
|
||||||
quote_style: 3,
|
|
||||||
});
|
|
||||||
try {
|
|
||||||
U.parse(input_code);
|
|
||||||
} catch (ex) {
|
|
||||||
log([
|
|
||||||
"!!! Cannot parse input",
|
|
||||||
"---INPUT---",
|
|
||||||
"{input}",
|
|
||||||
"--PARSE ERROR--",
|
|
||||||
"{error}",
|
|
||||||
"",
|
|
||||||
"",
|
|
||||||
].join("\n"), {
|
|
||||||
input: input_formatted,
|
|
||||||
error: ex,
|
|
||||||
});
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
var warnings_emitted = [];
|
|
||||||
if (test.expect_warnings) {
|
|
||||||
var expected_warnings = make_code(test.expect_warnings, {
|
|
||||||
beautify: false,
|
|
||||||
quote_style: 2, // force double quote to match JSON
|
|
||||||
});
|
|
||||||
U.AST_Node.log_function(function(text) {
|
|
||||||
warnings_emitted.push(text);
|
|
||||||
}, /"INFO: /.test(expected_warnings));
|
|
||||||
}
|
|
||||||
if (test.mangle && test.mangle.properties && test.mangle.properties.keep_quoted) {
|
|
||||||
var quoted_props = test.mangle.properties.reserved;
|
|
||||||
if (!Array.isArray(quoted_props)) quoted_props = [];
|
|
||||||
test.mangle.properties.reserved = quoted_props;
|
|
||||||
U.reserve_quoted_keys(input, quoted_props);
|
|
||||||
}
|
|
||||||
if (test.rename) {
|
|
||||||
input.figure_out_scope(test.mangle);
|
|
||||||
input.expand_names(test.mangle);
|
|
||||||
}
|
|
||||||
var cmp = new U.Compressor(test.options, true);
|
|
||||||
var output = cmp.compress(input);
|
|
||||||
output.figure_out_scope(test.mangle);
|
|
||||||
if (test.mangle) {
|
|
||||||
output.compute_char_frequency(test.mangle);
|
|
||||||
output.mangle_names(test.mangle);
|
|
||||||
if (test.mangle.properties) {
|
|
||||||
output = U.mangle_properties(output, test.mangle.properties);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
output = make_code(output, output_options);
|
|
||||||
if (expect != output) {
|
|
||||||
log([
|
|
||||||
"!!! failed",
|
|
||||||
"---INPUT---",
|
|
||||||
"{input}",
|
|
||||||
"---OUTPUT---",
|
|
||||||
"{output}",
|
|
||||||
"---EXPECTED---",
|
|
||||||
"{expected}",
|
|
||||||
"",
|
|
||||||
"",
|
|
||||||
].join("\n"), {
|
|
||||||
input: input_formatted,
|
|
||||||
output: output,
|
|
||||||
expected: expect
|
|
||||||
});
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
// expect == output
|
|
||||||
try {
|
|
||||||
U.parse(output);
|
|
||||||
} catch (ex) {
|
|
||||||
log([
|
|
||||||
"!!! Test matched expected result but cannot parse output",
|
|
||||||
"---INPUT---",
|
|
||||||
"{input}",
|
|
||||||
"---OUTPUT---",
|
|
||||||
"{output}",
|
|
||||||
"--REPARSE ERROR--",
|
|
||||||
"{error}",
|
|
||||||
"",
|
|
||||||
"",
|
|
||||||
].join("\n"), {
|
|
||||||
input: input_formatted,
|
|
||||||
output: output,
|
|
||||||
error: ex,
|
|
||||||
});
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (test.expect_warnings) {
|
|
||||||
warnings_emitted = warnings_emitted.map(function(input) {
|
|
||||||
return input.split(process.cwd() + path.sep).join("").split(path.sep).join("/");
|
|
||||||
});
|
|
||||||
var actual_warnings = JSON.stringify(warnings_emitted);
|
|
||||||
if (expected_warnings != actual_warnings) {
|
|
||||||
log([
|
|
||||||
"!!! failed",
|
|
||||||
"---INPUT---",
|
|
||||||
"{input}",
|
|
||||||
"---EXPECTED WARNINGS---",
|
|
||||||
"{expected_warnings}",
|
|
||||||
"---ACTUAL WARNINGS---",
|
|
||||||
"{actual_warnings}",
|
|
||||||
"",
|
|
||||||
"",
|
|
||||||
].join("\n"), {
|
|
||||||
input: input_formatted,
|
|
||||||
expected_warnings: expected_warnings,
|
|
||||||
actual_warnings: actual_warnings,
|
|
||||||
});
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (test.expect_stdout && (!test.node_version || semver.satisfies(process.version, test.node_version))) {
|
|
||||||
var stdout = [ run_code(input_code), run_code(input_code, true) ];
|
|
||||||
var toplevel = test.options.toplevel;
|
|
||||||
var actual = stdout[toplevel ? 1 : 0];
|
|
||||||
if (test.expect_stdout === true) {
|
|
||||||
test.expect_stdout = actual;
|
|
||||||
}
|
|
||||||
if (!sandbox.same_stdout(test.expect_stdout, actual)) {
|
|
||||||
log([
|
|
||||||
"!!! Invalid input or expected stdout",
|
|
||||||
"---INPUT---",
|
|
||||||
"{input}",
|
|
||||||
"---EXPECTED {expected_type}---",
|
|
||||||
"{expected}",
|
|
||||||
"---ACTUAL {actual_type}---",
|
|
||||||
"{actual}",
|
|
||||||
"",
|
|
||||||
"",
|
|
||||||
].join("\n"), {
|
|
||||||
input: input_formatted,
|
|
||||||
expected_type: typeof test.expect_stdout == "string" ? "STDOUT" : "ERROR",
|
|
||||||
expected: test.expect_stdout,
|
|
||||||
actual_type: typeof actual == "string" ? "STDOUT" : "ERROR",
|
|
||||||
actual: actual,
|
|
||||||
});
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
actual = run_code(output, toplevel);
|
|
||||||
if (!sandbox.same_stdout(test.expect_stdout, actual)) {
|
|
||||||
log([
|
|
||||||
"!!! failed",
|
|
||||||
"---INPUT---",
|
|
||||||
"{input}",
|
|
||||||
"---EXPECTED {expected_type}---",
|
|
||||||
"{expected}",
|
|
||||||
"---ACTUAL {actual_type}---",
|
|
||||||
"{actual}",
|
|
||||||
"",
|
|
||||||
"",
|
|
||||||
].join("\n"), {
|
|
||||||
input: input_formatted,
|
|
||||||
expected_type: typeof test.expect_stdout == "string" ? "STDOUT" : "ERROR",
|
|
||||||
expected: test.expect_stdout,
|
|
||||||
actual_type: typeof actual == "string" ? "STDOUT" : "ERROR",
|
|
||||||
actual: actual,
|
|
||||||
});
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (!reminify(test.options, input_code, input_formatted, stdout)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
function tmpl() {
|
|
||||||
return U.string_template.apply(null, arguments);
|
|
||||||
}
|
|
||||||
|
|
||||||
function to_toplevel(input, mangle_options) {
|
|
||||||
if (!(input instanceof U.AST_BlockStatement)) throw new Error("Unsupported input syntax");
|
|
||||||
var directive = true;
|
|
||||||
var offset = input.start.line;
|
|
||||||
var tokens = [];
|
|
||||||
var toplevel = new U.AST_Toplevel(input.transform(new U.TreeTransformer(function(node) {
|
|
||||||
if (U.push_uniq(tokens, node.start)) node.start.line -= offset;
|
|
||||||
if (!directive || node === input) return;
|
|
||||||
if (node instanceof U.AST_SimpleStatement && node.body instanceof U.AST_String) {
|
|
||||||
return new U.AST_Directive(node.body);
|
|
||||||
} else {
|
|
||||||
directive = false;
|
|
||||||
}
|
|
||||||
})));
|
|
||||||
toplevel.figure_out_scope(mangle_options);
|
|
||||||
return toplevel;
|
|
||||||
}
|
|
||||||
67
test/compress/angular-inject.js
vendored
Normal file
67
test/compress/angular-inject.js
vendored
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
ng_inject_defun: {
|
||||||
|
options = {
|
||||||
|
angular: true
|
||||||
|
};
|
||||||
|
input: {
|
||||||
|
/*@ngInject*/
|
||||||
|
function Controller(dependency) {
|
||||||
|
return dependency;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
expect: {
|
||||||
|
function Controller(dependency) {
|
||||||
|
return dependency;
|
||||||
|
}
|
||||||
|
Controller.$inject=['dependency']
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ng_inject_assignment: {
|
||||||
|
options = {
|
||||||
|
angular: true
|
||||||
|
};
|
||||||
|
input: {
|
||||||
|
/*@ngInject*/
|
||||||
|
var Controller = function(dependency) {
|
||||||
|
return dependency;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
expect: {
|
||||||
|
var Controller = function(dependency) {
|
||||||
|
return dependency;
|
||||||
|
}
|
||||||
|
Controller.$inject=['dependency']
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ng_inject_inline: {
|
||||||
|
options = {
|
||||||
|
angular: true
|
||||||
|
};
|
||||||
|
input: {
|
||||||
|
angular.module('a').
|
||||||
|
factory('b',
|
||||||
|
/*@ngInject*/
|
||||||
|
function(dependency) {
|
||||||
|
return dependency;
|
||||||
|
}).
|
||||||
|
directive('c',
|
||||||
|
/*@ngInject*/
|
||||||
|
function(anotherDependency) {
|
||||||
|
return anotherDependency;
|
||||||
|
})
|
||||||
|
}
|
||||||
|
expect: {
|
||||||
|
angular.module('a').
|
||||||
|
factory('b',[
|
||||||
|
'dependency',
|
||||||
|
function(dependency) {
|
||||||
|
return dependency;
|
||||||
|
}]).
|
||||||
|
directive('c',[
|
||||||
|
'anotherDependency',
|
||||||
|
function(anotherDependency) {
|
||||||
|
return anotherDependency;
|
||||||
|
}])
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,778 +0,0 @@
|
|||||||
replace_index: {
|
|
||||||
options = {
|
|
||||||
arguments: true,
|
|
||||||
evaluate: true,
|
|
||||||
properties: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var arguments = [];
|
|
||||||
console.log(arguments[0]);
|
|
||||||
(function() {
|
|
||||||
console.log(arguments[1], arguments["1"], arguments["foo"]);
|
|
||||||
})("bar", 42);
|
|
||||||
(function(a, b) {
|
|
||||||
console.log(arguments[1], arguments["1"], arguments["foo"]);
|
|
||||||
})("bar", 42);
|
|
||||||
(function(arguments) {
|
|
||||||
console.log(arguments[1], arguments["1"], arguments["foo"]);
|
|
||||||
})("bar", 42);
|
|
||||||
(function() {
|
|
||||||
var arguments;
|
|
||||||
console.log(arguments[1], arguments["1"], arguments["foo"]);
|
|
||||||
})("bar", 42);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var arguments = [];
|
|
||||||
console.log(arguments[0]);
|
|
||||||
(function() {
|
|
||||||
console.log(arguments[1], arguments[1], arguments.foo);
|
|
||||||
})("bar", 42);
|
|
||||||
(function(a, b) {
|
|
||||||
console.log(b, b, arguments.foo);
|
|
||||||
})("bar", 42);
|
|
||||||
(function(arguments) {
|
|
||||||
console.log(arguments[1], arguments[1], arguments.foo);
|
|
||||||
})("bar", 42);
|
|
||||||
(function() {
|
|
||||||
var arguments;
|
|
||||||
console.log(arguments[1], arguments[1], arguments.foo);
|
|
||||||
})("bar", 42);
|
|
||||||
}
|
|
||||||
expect_stdout: [
|
|
||||||
"undefined",
|
|
||||||
"42 42 undefined",
|
|
||||||
"42 42 undefined",
|
|
||||||
"a a undefined",
|
|
||||||
"42 42 undefined",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
replace_index_strict: {
|
|
||||||
options = {
|
|
||||||
arguments: true,
|
|
||||||
evaluate: true,
|
|
||||||
properties: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
"use strict";
|
|
||||||
(function() {
|
|
||||||
console.log(arguments[1], arguments["1"], arguments["foo"]);
|
|
||||||
})("bar", 42);
|
|
||||||
(function(a, b) {
|
|
||||||
console.log(arguments[1], arguments["1"], arguments["foo"]);
|
|
||||||
})("bar", 42);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
"use strict";
|
|
||||||
(function() {
|
|
||||||
console.log(arguments[1], arguments[1], arguments.foo);
|
|
||||||
})("bar", 42);
|
|
||||||
(function(a, b) {
|
|
||||||
console.log(b, b, arguments.foo);
|
|
||||||
})("bar", 42);
|
|
||||||
}
|
|
||||||
expect_stdout: [
|
|
||||||
"42 42 undefined",
|
|
||||||
"42 42 undefined",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
replace_index_keep_fargs: {
|
|
||||||
options = {
|
|
||||||
arguments: true,
|
|
||||||
evaluate: true,
|
|
||||||
keep_fargs: false,
|
|
||||||
properties: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var arguments = [];
|
|
||||||
console.log(arguments[0]);
|
|
||||||
(function() {
|
|
||||||
console.log(arguments[1], arguments["1"], arguments["foo"]);
|
|
||||||
})("bar", 42);
|
|
||||||
(function(a, b) {
|
|
||||||
console.log(arguments[1], arguments["1"], arguments["foo"]);
|
|
||||||
})("bar", 42);
|
|
||||||
(function(arguments) {
|
|
||||||
console.log(arguments[1], arguments["1"], arguments["foo"]);
|
|
||||||
})("bar", 42);
|
|
||||||
(function() {
|
|
||||||
var arguments;
|
|
||||||
console.log(arguments[1], arguments["1"], arguments["foo"]);
|
|
||||||
})("bar", 42);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var arguments = [];
|
|
||||||
console.log(arguments[0]);
|
|
||||||
(function(argument_0, argument_1) {
|
|
||||||
console.log(argument_1, argument_1, arguments.foo);
|
|
||||||
})("bar", 42);
|
|
||||||
(function(a, b) {
|
|
||||||
console.log(b, b, arguments.foo);
|
|
||||||
})("bar", 42);
|
|
||||||
(function(arguments) {
|
|
||||||
console.log(arguments[1], arguments[1], arguments.foo);
|
|
||||||
})("bar", 42);
|
|
||||||
(function() {
|
|
||||||
var arguments;
|
|
||||||
console.log(arguments[1], arguments[1], arguments.foo);
|
|
||||||
})("bar", 42);
|
|
||||||
}
|
|
||||||
expect_stdout: [
|
|
||||||
"undefined",
|
|
||||||
"42 42 undefined",
|
|
||||||
"42 42 undefined",
|
|
||||||
"a a undefined",
|
|
||||||
"42 42 undefined",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
replace_index_keep_fargs_strict: {
|
|
||||||
options = {
|
|
||||||
arguments: true,
|
|
||||||
evaluate: true,
|
|
||||||
keep_fargs: false,
|
|
||||||
properties: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
"use strict";
|
|
||||||
(function() {
|
|
||||||
console.log(arguments[1], arguments["1"], arguments["foo"]);
|
|
||||||
})("bar", 42);
|
|
||||||
(function(a, b) {
|
|
||||||
console.log(arguments[1], arguments["1"], arguments["foo"]);
|
|
||||||
})("bar", 42);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
"use strict";
|
|
||||||
(function(argument_0, argument_1) {
|
|
||||||
console.log(argument_1, argument_1, arguments.foo);
|
|
||||||
})("bar", 42);
|
|
||||||
(function(a, b) {
|
|
||||||
console.log(b, b, arguments.foo);
|
|
||||||
})("bar", 42);
|
|
||||||
}
|
|
||||||
expect_stdout: [
|
|
||||||
"42 42 undefined",
|
|
||||||
"42 42 undefined",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
modified: {
|
|
||||||
options = {
|
|
||||||
arguments: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
(function(a, b) {
|
|
||||||
var c = arguments[0];
|
|
||||||
var d = arguments[1];
|
|
||||||
var a = "foo";
|
|
||||||
b++;
|
|
||||||
arguments[0] = "moo";
|
|
||||||
arguments[1] *= 2;
|
|
||||||
console.log(a, b, c, d, arguments[0], arguments[1]);
|
|
||||||
})("bar", 42);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
(function(a, b) {
|
|
||||||
var c = a;
|
|
||||||
var d = b;
|
|
||||||
var a = "foo";
|
|
||||||
b++;
|
|
||||||
a = "moo";
|
|
||||||
b *= 2;
|
|
||||||
console.log(a, b, c, d, a, b);
|
|
||||||
})("bar", 42);
|
|
||||||
}
|
|
||||||
expect_stdout: "moo 86 bar 42 moo 86"
|
|
||||||
}
|
|
||||||
|
|
||||||
modified_strict: {
|
|
||||||
options = {
|
|
||||||
arguments: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
"use strict";
|
|
||||||
(function(a, b) {
|
|
||||||
var c = arguments[0];
|
|
||||||
var d = arguments[1];
|
|
||||||
var a = "foo";
|
|
||||||
b++;
|
|
||||||
arguments[0] = "moo";
|
|
||||||
arguments[1] *= 2;
|
|
||||||
console.log(a, b, c, d, arguments[0], arguments[1]);
|
|
||||||
})("bar", 42);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
"use strict";
|
|
||||||
(function(a, b) {
|
|
||||||
var c = arguments[0];
|
|
||||||
var d = arguments[1];
|
|
||||||
var a = "foo";
|
|
||||||
b++;
|
|
||||||
arguments[0] = "moo";
|
|
||||||
arguments[1] *= 2;
|
|
||||||
console.log(a, b, c, d, arguments[0], arguments[1]);
|
|
||||||
})("bar", 42);
|
|
||||||
}
|
|
||||||
expect_stdout: "foo 43 bar 42 moo 84"
|
|
||||||
}
|
|
||||||
|
|
||||||
duplicate_argname: {
|
|
||||||
options = {
|
|
||||||
arguments: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
(function(a, b, a) {
|
|
||||||
console.log(a, b, arguments[0], arguments[1], arguments[2]);
|
|
||||||
})("foo", 42, "bar");
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
(function(a, b, a) {
|
|
||||||
console.log(a, b, arguments[0], b, a);
|
|
||||||
})("foo", 42, "bar");
|
|
||||||
}
|
|
||||||
expect_stdout: "bar 42 foo 42 bar"
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3273: {
|
|
||||||
options = {
|
|
||||||
arguments: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function f(a) {
|
|
||||||
console.log(arguments[0], a);
|
|
||||||
arguments[0]++;
|
|
||||||
console.log(arguments[0], a);
|
|
||||||
}
|
|
||||||
f(0);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
function f(a) {
|
|
||||||
console.log(a, a);
|
|
||||||
a++;
|
|
||||||
console.log(a, a);
|
|
||||||
}
|
|
||||||
f(0);
|
|
||||||
}
|
|
||||||
expect_stdout: [
|
|
||||||
"0 0",
|
|
||||||
"1 1",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3273_reduce_vars: {
|
|
||||||
options = {
|
|
||||||
arguments: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function f(a) {
|
|
||||||
console.log(arguments[0], a);
|
|
||||||
arguments[0]++;
|
|
||||||
console.log(arguments[0], a);
|
|
||||||
}
|
|
||||||
f(0);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
function f(a) {
|
|
||||||
console.log(a, a);
|
|
||||||
a++;
|
|
||||||
console.log(a, a);
|
|
||||||
}
|
|
||||||
f(0);
|
|
||||||
}
|
|
||||||
expect_stdout: [
|
|
||||||
"0 0",
|
|
||||||
"1 1",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3273_local_strict: {
|
|
||||||
options = {
|
|
||||||
arguments: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function f(a) {
|
|
||||||
"use strict";
|
|
||||||
console.log(arguments[0], a);
|
|
||||||
arguments[0]++;
|
|
||||||
console.log(arguments[0], a);
|
|
||||||
}
|
|
||||||
f(0);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
function f(a) {
|
|
||||||
"use strict";
|
|
||||||
console.log(arguments[0], a);
|
|
||||||
arguments[0]++;
|
|
||||||
console.log(arguments[0], a);
|
|
||||||
}
|
|
||||||
f(0);
|
|
||||||
}
|
|
||||||
expect_stdout: [
|
|
||||||
"0 0",
|
|
||||||
"1 0",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3273_local_strict_reduce_vars: {
|
|
||||||
options = {
|
|
||||||
arguments: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function f(a) {
|
|
||||||
"use strict";
|
|
||||||
console.log(arguments[0], a);
|
|
||||||
arguments[0]++;
|
|
||||||
console.log(arguments[0], a);
|
|
||||||
}
|
|
||||||
f(0);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
function f(a) {
|
|
||||||
"use strict";
|
|
||||||
console.log(arguments[0], a);
|
|
||||||
arguments[0]++;
|
|
||||||
console.log(arguments[0], a);
|
|
||||||
}
|
|
||||||
f(0);
|
|
||||||
}
|
|
||||||
expect_stdout: [
|
|
||||||
"0 0",
|
|
||||||
"1 0",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3273_global_strict: {
|
|
||||||
options = {
|
|
||||||
arguments: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
"use strict";
|
|
||||||
function f(a) {
|
|
||||||
console.log(arguments[0], a);
|
|
||||||
arguments[0]++;
|
|
||||||
console.log(arguments[0], a);
|
|
||||||
}
|
|
||||||
f(0);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
"use strict";
|
|
||||||
function f(a) {
|
|
||||||
console.log(arguments[0], a);
|
|
||||||
arguments[0]++;
|
|
||||||
console.log(arguments[0], a);
|
|
||||||
}
|
|
||||||
f(0);
|
|
||||||
}
|
|
||||||
expect_stdout: [
|
|
||||||
"0 0",
|
|
||||||
"1 0",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3273_global_strict_reduce_vars: {
|
|
||||||
options = {
|
|
||||||
arguments: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
"use strict";
|
|
||||||
function f(a) {
|
|
||||||
console.log(arguments[0], a);
|
|
||||||
arguments[0]++;
|
|
||||||
console.log(arguments[0], a);
|
|
||||||
}
|
|
||||||
f(0);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
"use strict";
|
|
||||||
function f(a) {
|
|
||||||
console.log(arguments[0], a);
|
|
||||||
arguments[0]++;
|
|
||||||
console.log(arguments[0], a);
|
|
||||||
}
|
|
||||||
f(0);
|
|
||||||
}
|
|
||||||
expect_stdout: [
|
|
||||||
"0 0",
|
|
||||||
"1 0",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3273_keep_fargs_false: {
|
|
||||||
options = {
|
|
||||||
arguments: true,
|
|
||||||
keep_fargs: false,
|
|
||||||
reduce_vars: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
(function() {
|
|
||||||
"use strict";
|
|
||||||
arguments[0]++;
|
|
||||||
console.log(arguments[0]);
|
|
||||||
})(0);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
(function(argument_0) {
|
|
||||||
"use strict";
|
|
||||||
argument_0++;
|
|
||||||
console.log(argument_0);
|
|
||||||
})(0);
|
|
||||||
}
|
|
||||||
expect_stdout: "1"
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3273_keep_fargs_strict: {
|
|
||||||
options = {
|
|
||||||
arguments: true,
|
|
||||||
keep_fargs: "strict",
|
|
||||||
reduce_vars: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
(function() {
|
|
||||||
"use strict";
|
|
||||||
arguments[0]++;
|
|
||||||
console.log(arguments[0]);
|
|
||||||
})(0);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
(function(argument_0) {
|
|
||||||
"use strict";
|
|
||||||
argument_0++;
|
|
||||||
console.log(argument_0);
|
|
||||||
})(0);
|
|
||||||
}
|
|
||||||
expect_stdout: "1"
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3282_1: {
|
|
||||||
options = {
|
|
||||||
arguments: true,
|
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
keep_fargs: false,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
(function(t) {
|
|
||||||
return function() {
|
|
||||||
t();
|
|
||||||
};
|
|
||||||
})(function() {
|
|
||||||
'use strict';
|
|
||||||
function e() {
|
|
||||||
return arguments[0];
|
|
||||||
}
|
|
||||||
e();
|
|
||||||
e();
|
|
||||||
})();
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
(function() {
|
|
||||||
return function() {
|
|
||||||
(function() {
|
|
||||||
"use strict";
|
|
||||||
function e() {
|
|
||||||
return arguments[0];
|
|
||||||
}
|
|
||||||
e();
|
|
||||||
e();
|
|
||||||
})();
|
|
||||||
};
|
|
||||||
})()();
|
|
||||||
}
|
|
||||||
expect_stdout: true
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3282_1_passes: {
|
|
||||||
options = {
|
|
||||||
arguments: true,
|
|
||||||
passes: 2,
|
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
keep_fargs: false,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
(function(t) {
|
|
||||||
return function() {
|
|
||||||
t();
|
|
||||||
};
|
|
||||||
})(function() {
|
|
||||||
'use strict';
|
|
||||||
function e() {
|
|
||||||
return arguments[0];
|
|
||||||
}
|
|
||||||
e();
|
|
||||||
e();
|
|
||||||
})();
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
(function() {
|
|
||||||
return function() {
|
|
||||||
(function() {
|
|
||||||
"use strict";
|
|
||||||
function e(argument_0) {
|
|
||||||
return argument_0;
|
|
||||||
}
|
|
||||||
e();
|
|
||||||
e();
|
|
||||||
})();
|
|
||||||
};
|
|
||||||
})()();
|
|
||||||
}
|
|
||||||
expect_stdout: true
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3282_2: {
|
|
||||||
options = {
|
|
||||||
arguments: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
keep_fargs: false,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
(function(f) {
|
|
||||||
f();
|
|
||||||
})(function() {
|
|
||||||
return (function(t) {
|
|
||||||
return function() {
|
|
||||||
t();
|
|
||||||
};
|
|
||||||
})(function() {
|
|
||||||
'use strict';
|
|
||||||
function e() {
|
|
||||||
return arguments[0];
|
|
||||||
}
|
|
||||||
e();
|
|
||||||
e();
|
|
||||||
})();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
(function() {
|
|
||||||
(function() {
|
|
||||||
return function(t) {
|
|
||||||
return function() {
|
|
||||||
t();
|
|
||||||
};
|
|
||||||
}(function() {
|
|
||||||
"use strict";
|
|
||||||
function e() {
|
|
||||||
return arguments[0];
|
|
||||||
}
|
|
||||||
e();
|
|
||||||
e();
|
|
||||||
})();
|
|
||||||
})();
|
|
||||||
})();
|
|
||||||
}
|
|
||||||
expect_stdout: true
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3282_2_passes: {
|
|
||||||
options = {
|
|
||||||
arguments: true,
|
|
||||||
passes: 2,
|
|
||||||
reduce_vars: true,
|
|
||||||
keep_fargs: false,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
(function(f) {
|
|
||||||
f();
|
|
||||||
})(function() {
|
|
||||||
return (function(t) {
|
|
||||||
return function() {
|
|
||||||
t();
|
|
||||||
};
|
|
||||||
})(function() {
|
|
||||||
'use strict';
|
|
||||||
function e() {
|
|
||||||
return arguments[0];
|
|
||||||
}
|
|
||||||
e();
|
|
||||||
e();
|
|
||||||
})();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
(function() {
|
|
||||||
(function() {
|
|
||||||
return function(t) {
|
|
||||||
return function() {
|
|
||||||
t();
|
|
||||||
};
|
|
||||||
}(function() {
|
|
||||||
"use strict";
|
|
||||||
function e(argument_0) {
|
|
||||||
return argument_0;
|
|
||||||
}
|
|
||||||
e();
|
|
||||||
e();
|
|
||||||
})();
|
|
||||||
})();
|
|
||||||
})();
|
|
||||||
}
|
|
||||||
expect_stdout: true
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3420_1: {
|
|
||||||
options = {
|
|
||||||
arguments: true,
|
|
||||||
keep_fargs: "strict",
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
console.log(function() {
|
|
||||||
return function() {
|
|
||||||
return arguments[0];
|
|
||||||
};
|
|
||||||
}().length);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
console.log(function() {
|
|
||||||
return function() {
|
|
||||||
return arguments[0];
|
|
||||||
};
|
|
||||||
}().length);
|
|
||||||
}
|
|
||||||
expect_stdout: "0"
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3420_2: {
|
|
||||||
options = {
|
|
||||||
arguments: true,
|
|
||||||
keep_fargs: "strict",
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var foo = function() {
|
|
||||||
delete arguments[0];
|
|
||||||
};
|
|
||||||
foo();
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var foo = function() {
|
|
||||||
delete arguments[0];
|
|
||||||
};
|
|
||||||
foo();
|
|
||||||
}
|
|
||||||
expect_stdout: true
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3420_3: {
|
|
||||||
options = {
|
|
||||||
arguments: true,
|
|
||||||
keep_fargs: "strict",
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
"use strict";
|
|
||||||
var foo = function() {
|
|
||||||
delete arguments[0];
|
|
||||||
};
|
|
||||||
foo();
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
"use strict";
|
|
||||||
var foo = function() {
|
|
||||||
delete arguments[0];
|
|
||||||
};
|
|
||||||
foo();
|
|
||||||
}
|
|
||||||
expect_stdout: true
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3420_4: {
|
|
||||||
options = {
|
|
||||||
arguments: true,
|
|
||||||
keep_fargs: "strict",
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
!function() {
|
|
||||||
console.log(arguments[0]);
|
|
||||||
delete arguments[0];
|
|
||||||
console.log(arguments[0]);
|
|
||||||
}(42);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
!function(argument_0) {
|
|
||||||
console.log(argument_0);
|
|
||||||
delete arguments[0];
|
|
||||||
console.log(arguments[0]);
|
|
||||||
}(42);
|
|
||||||
}
|
|
||||||
expect_stdout: [
|
|
||||||
"42",
|
|
||||||
"undefined",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3420_5: {
|
|
||||||
options = {
|
|
||||||
arguments: true,
|
|
||||||
keep_fargs: "strict",
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
"use strict";
|
|
||||||
!function() {
|
|
||||||
console.log(arguments[0]);
|
|
||||||
delete arguments[0];
|
|
||||||
console.log(arguments[0]);
|
|
||||||
}(42);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
"use strict";
|
|
||||||
!function(argument_0) {
|
|
||||||
console.log(argument_0);
|
|
||||||
delete arguments[0];
|
|
||||||
console.log(arguments[0]);
|
|
||||||
}(42);
|
|
||||||
}
|
|
||||||
expect_stdout: [
|
|
||||||
"42",
|
|
||||||
"undefined",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3420_6: {
|
|
||||||
options = {
|
|
||||||
arguments: true,
|
|
||||||
keep_fargs: "strict",
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
console.log(function() {
|
|
||||||
return delete arguments[0];
|
|
||||||
}());
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
console.log(function() {
|
|
||||||
return delete arguments[0];
|
|
||||||
}());
|
|
||||||
}
|
|
||||||
expect_stdout: "true"
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3420_7: {
|
|
||||||
options = {
|
|
||||||
arguments: true,
|
|
||||||
keep_fargs: "strict",
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
"use strict";
|
|
||||||
console.log(function() {
|
|
||||||
return delete arguments[0];
|
|
||||||
}());
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
"use strict";
|
|
||||||
console.log(function() {
|
|
||||||
return delete arguments[0];
|
|
||||||
}());
|
|
||||||
}
|
|
||||||
expect_stdout: "true"
|
|
||||||
}
|
|
||||||
@@ -15,9 +15,9 @@ holes_and_undefined: {
|
|||||||
|
|
||||||
constant_join: {
|
constant_join: {
|
||||||
options = {
|
options = {
|
||||||
evaluate: true,
|
unsafe : true,
|
||||||
unsafe: true,
|
evaluate : true
|
||||||
}
|
};
|
||||||
input: {
|
input: {
|
||||||
var a = [ "foo", "bar", "baz" ].join("");
|
var a = [ "foo", "bar", "baz" ].join("");
|
||||||
var a1 = [ "foo", "bar", "baz" ].join();
|
var a1 = [ "foo", "bar", "baz" ].join();
|
||||||
@@ -64,9 +64,9 @@ constant_join: {
|
|||||||
|
|
||||||
constant_join_2: {
|
constant_join_2: {
|
||||||
options = {
|
options = {
|
||||||
evaluate: true,
|
unsafe : true,
|
||||||
unsafe: true,
|
evaluate : true
|
||||||
}
|
};
|
||||||
input: {
|
input: {
|
||||||
var a = [ "foo", "bar", boo(), "baz", "x", "y" ].join("");
|
var a = [ "foo", "bar", boo(), "baz", "x", "y" ].join("");
|
||||||
var b = [ "foo", "bar", boo(), "baz", "x", "y" ].join("-");
|
var b = [ "foo", "bar", boo(), "baz", "x", "y" ].join("-");
|
||||||
@@ -93,9 +93,9 @@ constant_join_2: {
|
|||||||
|
|
||||||
constant_join_3: {
|
constant_join_3: {
|
||||||
options = {
|
options = {
|
||||||
evaluate: true,
|
|
||||||
unsafe: true,
|
unsafe: true,
|
||||||
}
|
evaluate: true,
|
||||||
|
};
|
||||||
input: {
|
input: {
|
||||||
var a = [ null ].join();
|
var a = [ null ].join();
|
||||||
var b = [ , ].join();
|
var b = [ , ].join();
|
||||||
@@ -128,224 +128,50 @@ constant_join_3: {
|
|||||||
|
|
||||||
for_loop: {
|
for_loop: {
|
||||||
options = {
|
options = {
|
||||||
evaluate: true,
|
unsafe : true,
|
||||||
reduce_funcs: true,
|
unused : true,
|
||||||
reduce_vars: true,
|
evaluate : true,
|
||||||
unsafe: true,
|
reduce_vars : true
|
||||||
unused: true,
|
};
|
||||||
}
|
|
||||||
input: {
|
input: {
|
||||||
function f0() {
|
function f0() {
|
||||||
var a = [1, 2, 3];
|
var a = [1, 2, 3];
|
||||||
var b = 0;
|
for (var i = 0; i < a.length; i++) {
|
||||||
for (var i = 0; i < a.length; i++)
|
console.log(a[i]);
|
||||||
b += a[i];
|
}
|
||||||
return b;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function f1() {
|
function f1() {
|
||||||
var a = [1, 2, 3];
|
var a = [1, 2, 3];
|
||||||
var b = 0;
|
for (var i = 0, len = a.length; i < len; i++) {
|
||||||
for (var i = 0, len = a.length; i < len; i++)
|
console.log(a[i]);
|
||||||
b += a[i];
|
}
|
||||||
return b;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function f2() {
|
function f2() {
|
||||||
var a = [1, 2, 3];
|
var a = [1, 2, 3];
|
||||||
for (var i = 0; i < a.length; i++)
|
for (var i = 0; i < a.length; i++) {
|
||||||
a[i]++;
|
a[i]++;
|
||||||
return a[2];
|
}
|
||||||
}
|
}
|
||||||
console.log(f0(), f1(), f2());
|
|
||||||
}
|
}
|
||||||
expect: {
|
expect: {
|
||||||
function f0() {
|
function f0() {
|
||||||
var a = [1, 2, 3];
|
var a = [1, 2, 3];
|
||||||
var b = 0;
|
|
||||||
for (var i = 0; i < 3; i++)
|
for (var i = 0; i < 3; i++)
|
||||||
b += a[i];
|
console.log(a[i]);
|
||||||
return b;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function f1() {
|
function f1() {
|
||||||
var a = [1, 2, 3];
|
var a = [1, 2, 3];
|
||||||
var b = 0;
|
|
||||||
for (var i = 0; i < 3; i++)
|
for (var i = 0; i < 3; i++)
|
||||||
b += a[i];
|
console.log(a[i]);
|
||||||
return b;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function f2() {
|
function f2() {
|
||||||
var a = [1, 2, 3];
|
var a = [1, 2, 3];
|
||||||
for (var i = 0; i < a.length; i++)
|
for (var i = 0; i < a.length; i++)
|
||||||
a[i]++;
|
a[i]++;
|
||||||
return a[2];
|
|
||||||
}
|
|
||||||
console.log(f0(), f1(), f2());
|
|
||||||
}
|
|
||||||
expect_stdout: "6 6 4"
|
|
||||||
}
|
|
||||||
|
|
||||||
index: {
|
|
||||||
options = {
|
|
||||||
evaluate: true,
|
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
toplevel: true,
|
|
||||||
unsafe: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var a = [ 1, 2 ];
|
|
||||||
console.log(a[0], a[1]);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
console.log(1, 2);
|
|
||||||
}
|
|
||||||
expect_stdout: "1 2"
|
|
||||||
}
|
|
||||||
|
|
||||||
length: {
|
|
||||||
options = {
|
|
||||||
evaluate: true,
|
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
toplevel: true,
|
|
||||||
unsafe: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var a = [ 1, 2 ];
|
|
||||||
console.log(a.length);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
console.log(2);
|
|
||||||
}
|
|
||||||
expect_stdout: "2"
|
|
||||||
}
|
|
||||||
|
|
||||||
index_length: {
|
|
||||||
options = {
|
|
||||||
evaluate: true,
|
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
toplevel: true,
|
|
||||||
unsafe: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var a = [ 1, 2 ];
|
|
||||||
console.log(a[0], a.length);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
console.log(1, 2);
|
|
||||||
}
|
|
||||||
expect_stdout: "1 2"
|
|
||||||
}
|
|
||||||
|
|
||||||
constructor_bad: {
|
|
||||||
options = {
|
|
||||||
unsafe: true
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
try {
|
|
||||||
Array(NaN);
|
|
||||||
console.log("FAIL1");
|
|
||||||
} catch (ex) {
|
|
||||||
try {
|
|
||||||
new Array(NaN);
|
|
||||||
console.log("FAIL2");
|
|
||||||
} catch (ex) {
|
|
||||||
console.log("PASS");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
try {
|
|
||||||
Array(3.14);
|
|
||||||
console.log("FAIL1");
|
|
||||||
} catch (ex) {
|
|
||||||
try {
|
|
||||||
new Array(3.14);
|
|
||||||
console.log("FAIL2");
|
|
||||||
} catch (ex) {
|
|
||||||
console.log("PASS");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
expect: {
|
|
||||||
try {
|
|
||||||
Array(NaN);
|
|
||||||
console.log("FAIL1");
|
|
||||||
} catch (ex) {
|
|
||||||
try {
|
|
||||||
Array(NaN);
|
|
||||||
console.log("FAIL2");
|
|
||||||
} catch (ex) {
|
|
||||||
console.log("PASS");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
try {
|
|
||||||
Array(3.14);
|
|
||||||
console.log("FAIL1");
|
|
||||||
} catch (ex) {
|
|
||||||
try {
|
|
||||||
Array(3.14);
|
|
||||||
console.log("FAIL2");
|
|
||||||
} catch (ex) {
|
|
||||||
console.log("PASS");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
expect_stdout: [
|
|
||||||
"PASS",
|
|
||||||
"PASS",
|
|
||||||
]
|
|
||||||
expect_warnings: [
|
|
||||||
"WARN: Invalid array length: 3.14 [test/compress/arrays.js:13,12]",
|
|
||||||
"WARN: Invalid array length: 3.14 [test/compress/arrays.js:17,16]",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
constructor_good: {
|
|
||||||
options = {
|
|
||||||
unsafe: true
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
console.log(Array());
|
|
||||||
console.log(Array(0));
|
|
||||||
console.log(Array(1));
|
|
||||||
console.log(Array(6));
|
|
||||||
console.log(Array(7));
|
|
||||||
console.log(Array(1, 2));
|
|
||||||
console.log(Array(false));
|
|
||||||
console.log(Array("foo"));
|
|
||||||
console.log(Array(Array));
|
|
||||||
console.log(new Array());
|
|
||||||
console.log(new Array(0));
|
|
||||||
console.log(new Array(1));
|
|
||||||
console.log(new Array(6));
|
|
||||||
console.log(new Array(7));
|
|
||||||
console.log(new Array(1, 2));
|
|
||||||
console.log(new Array(false));
|
|
||||||
console.log(new Array("foo"));
|
|
||||||
console.log(new Array(Array));
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
console.log([]);
|
|
||||||
console.log([]);
|
|
||||||
console.log([,]);
|
|
||||||
console.log([,,,,,,]);
|
|
||||||
console.log(Array(7));
|
|
||||||
console.log([ 1, 2 ]);
|
|
||||||
console.log([ false ]);
|
|
||||||
console.log([ "foo" ]);
|
|
||||||
console.log(Array(Array));
|
|
||||||
console.log([]);
|
|
||||||
console.log([]);
|
|
||||||
console.log([,]);
|
|
||||||
console.log([,,,,,,]);
|
|
||||||
console.log(Array(7));
|
|
||||||
console.log([ 1, 2 ]);
|
|
||||||
console.log([ false ]);
|
|
||||||
console.log([ "foo" ]);
|
|
||||||
console.log(Array(Array));
|
|
||||||
}
|
|
||||||
expect_stdout: true
|
|
||||||
expect_warnings: []
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ ascii_only_true: {
|
|||||||
options = {}
|
options = {}
|
||||||
beautify = {
|
beautify = {
|
||||||
ascii_only : true,
|
ascii_only : true,
|
||||||
ie8 : false,
|
screw_ie8 : true,
|
||||||
beautify : false,
|
beautify : false,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
@@ -13,14 +13,14 @@ ascii_only_true: {
|
|||||||
"\x20\x21\x22\x23 ... \x7d\x7e\x7f\x80\x81 ... \xfe\xff\u0fff\uffff";
|
"\x20\x21\x22\x23 ... \x7d\x7e\x7f\x80\x81 ... \xfe\xff\u0fff\uffff";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
expect_exact: 'function f(){return"\\x000\\x001\\x007\\x008\\0"+"\\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07\\b\\t\\n\\v\\f\\r\\x0e\\x0f"+"\\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17\\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f"+\' !"# ... }~\\x7f\\x80\\x81 ... \\xfe\\xff\\u0fff\\uffff\'}'
|
expect_exact: 'function f(){return"\\x000\\x001\\x007\\08\\0"+"\\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07\\b\\t\\n\\v\\f\\r\\x0e\\x0f"+"\\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17\\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f"+\' !"# ... }~\\x7f\\x80\\x81 ... \\xfe\\xff\\u0fff\\uffff\'}'
|
||||||
}
|
}
|
||||||
|
|
||||||
ascii_only_false: {
|
ascii_only_false: {
|
||||||
options = {}
|
options = {}
|
||||||
beautify = {
|
beautify = {
|
||||||
ascii_only : false,
|
ascii_only : false,
|
||||||
ie8 : false,
|
screw_ie8 : true,
|
||||||
beautify : false,
|
beautify : false,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
@@ -31,5 +31,6 @@ ascii_only_false: {
|
|||||||
"\x20\x21\x22\x23 ... \x7d\x7e\x7f\x80\x81 ... \xfe\xff\u0fff\uffff";
|
"\x20\x21\x22\x23 ... \x7d\x7e\x7f\x80\x81 ... \xfe\xff\u0fff\uffff";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
expect_exact: 'function f(){return"\\x000\\x001\\x007\\x008\\0"+"\\0\x01\x02\x03\x04\x05\x06\x07\\b\\t\\n\\v\\f\\r\x0e\x0f"+"\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"+\' !"# ... }~\x7f\x80\x81 ... \xfe\xff\u0fff\uffff\'}'
|
expect_exact: 'function f(){return"\\x000\\x001\\x007\\08\\0"+"\\0\x01\x02\x03\x04\x05\x06\x07\\b\\t\\n\\v\\f\\r\x0e\x0f"+"\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"+\' !"# ... }~\x7f\x80\x81 ... \xfe\xff\u0fff\uffff\'}'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,25 +1,25 @@
|
|||||||
asm_mixed: {
|
asm_mixed: {
|
||||||
options = {
|
options = {
|
||||||
assignments: true,
|
sequences : true,
|
||||||
booleans: true,
|
properties : true,
|
||||||
comparisons: true,
|
dead_code : true,
|
||||||
conditionals: true,
|
drop_debugger : true,
|
||||||
dead_code: true,
|
conditionals : true,
|
||||||
drop_debugger: true,
|
comparisons : true,
|
||||||
evaluate: true,
|
evaluate : true,
|
||||||
hoist_funs: true,
|
booleans : true,
|
||||||
hoist_vars: true,
|
loops : true,
|
||||||
if_return: true,
|
unused : true,
|
||||||
join_vars: true,
|
hoist_funs : true,
|
||||||
keep_fargs: true,
|
keep_fargs : true,
|
||||||
keep_fnames: false,
|
keep_fnames : false,
|
||||||
loops: true,
|
hoist_vars : true,
|
||||||
negate_iife: true,
|
if_return : true,
|
||||||
properties: true,
|
join_vars : true,
|
||||||
sequences: true,
|
cascade : true,
|
||||||
side_effects: true,
|
side_effects : true,
|
||||||
unused: true,
|
negate_iife : true
|
||||||
}
|
};
|
||||||
input: {
|
input: {
|
||||||
// adapted from http://asmjs.org/spec/latest/
|
// adapted from http://asmjs.org/spec/latest/
|
||||||
function asm_GeometricMean(stdlib, foreign, buffer) {
|
function asm_GeometricMean(stdlib, foreign, buffer) {
|
||||||
@@ -96,7 +96,7 @@ asm_mixed: {
|
|||||||
return +sum;
|
return +sum;
|
||||||
}
|
}
|
||||||
function geometricMean(start, end) {
|
function geometricMean(start, end) {
|
||||||
return start |= 0, end |= 0, +exp(logSum(start, end) / (end - start | 0));
|
return start |= 0, end |= 0, +exp(+logSum(start, end) / +(end - start | 0));
|
||||||
}
|
}
|
||||||
var exp = stdlib.Math.exp, log = stdlib.Math.log, values = new stdlib.Float64Array(buffer);
|
var exp = stdlib.Math.exp, log = stdlib.Math.log, values = new stdlib.Float64Array(buffer);
|
||||||
return { geometricMean: geometricMean };
|
return { geometricMean: geometricMean };
|
||||||
@@ -104,65 +104,3 @@ asm_mixed: {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
asm_toplevel: {
|
|
||||||
options = {}
|
|
||||||
input: {
|
|
||||||
"use asm";
|
|
||||||
0.0;
|
|
||||||
function f() {
|
|
||||||
0.0;
|
|
||||||
(function(){
|
|
||||||
0.0;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
0.0;
|
|
||||||
}
|
|
||||||
expect_exact: '"use asm";0.0;function f(){0.0;(function(){0.0})}0.0;'
|
|
||||||
}
|
|
||||||
|
|
||||||
asm_function_expression: {
|
|
||||||
options = {}
|
|
||||||
input: {
|
|
||||||
0.0;
|
|
||||||
var a = function() {
|
|
||||||
"use asm";
|
|
||||||
0.0;
|
|
||||||
}
|
|
||||||
function f() {
|
|
||||||
0.0;
|
|
||||||
return function(){
|
|
||||||
"use asm";
|
|
||||||
0.0;
|
|
||||||
}
|
|
||||||
0.0;
|
|
||||||
}
|
|
||||||
0.0;
|
|
||||||
}
|
|
||||||
expect_exact: '0;var a=function(){"use asm";0.0};function f(){0;return function(){"use asm";0.0};0}0;'
|
|
||||||
}
|
|
||||||
|
|
||||||
asm_nested_functions: {
|
|
||||||
options = {}
|
|
||||||
input: {
|
|
||||||
0.0;
|
|
||||||
function a() {
|
|
||||||
"use asm";
|
|
||||||
0.0;
|
|
||||||
}
|
|
||||||
0.0;
|
|
||||||
function b() {
|
|
||||||
0.0;
|
|
||||||
function c(){
|
|
||||||
"use asm";
|
|
||||||
0.0;
|
|
||||||
}
|
|
||||||
0.0;
|
|
||||||
function d(){
|
|
||||||
0.0;
|
|
||||||
}
|
|
||||||
0.0;
|
|
||||||
}
|
|
||||||
0.0;
|
|
||||||
}
|
|
||||||
expect_exact: '0;function a(){"use asm";0.0}0;function b(){0;function c(){"use asm";0.0}0;function d(){0}0}0;'
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
op_equals_left_local_var: {
|
op_equals_left_local_var: {
|
||||||
options = {
|
options = {
|
||||||
assignments: true,
|
|
||||||
evaluate: true,
|
evaluate: true,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
@@ -61,7 +60,6 @@ op_equals_left_local_var: {
|
|||||||
|
|
||||||
op_equals_right_local_var: {
|
op_equals_right_local_var: {
|
||||||
options = {
|
options = {
|
||||||
assignments: true,
|
|
||||||
evaluate: true,
|
evaluate: true,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
@@ -125,7 +123,6 @@ op_equals_right_local_var: {
|
|||||||
}
|
}
|
||||||
op_equals_left_global_var: {
|
op_equals_left_global_var: {
|
||||||
options = {
|
options = {
|
||||||
assignments: true,
|
|
||||||
evaluate: true,
|
evaluate: true,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
@@ -182,7 +179,6 @@ op_equals_left_global_var: {
|
|||||||
|
|
||||||
op_equals_right_global_var: {
|
op_equals_right_global_var: {
|
||||||
options = {
|
options = {
|
||||||
assignments: true,
|
|
||||||
evaluate: true,
|
evaluate: true,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
@@ -240,170 +236,3 @@ op_equals_right_global_var: {
|
|||||||
x = g() & x;
|
x = g() & x;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
increment_decrement_1: {
|
|
||||||
options = {
|
|
||||||
assignments: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
console.log(function(a) {
|
|
||||||
a += 1;
|
|
||||||
a -= 1;
|
|
||||||
return a;
|
|
||||||
}(42));
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
console.log(function(a){
|
|
||||||
++a;
|
|
||||||
--a;
|
|
||||||
return a;
|
|
||||||
}(42));
|
|
||||||
}
|
|
||||||
expect_stdout: "42"
|
|
||||||
}
|
|
||||||
|
|
||||||
increment_decrement_2: {
|
|
||||||
options = {
|
|
||||||
assignments: true,
|
|
||||||
passes: 2,
|
|
||||||
reduce_vars: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
console.log(function(a) {
|
|
||||||
a = a + 1;
|
|
||||||
a = a - 1;
|
|
||||||
a += 1;
|
|
||||||
a -= 1;
|
|
||||||
return a;
|
|
||||||
}(42));
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
console.log(function(a){
|
|
||||||
++a;
|
|
||||||
--a;
|
|
||||||
++a;
|
|
||||||
--a;
|
|
||||||
return a;
|
|
||||||
}(42));
|
|
||||||
}
|
|
||||||
expect_stdout: "42"
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3375_1: {
|
|
||||||
options = {
|
|
||||||
assignments: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function p(o) {
|
|
||||||
console.log(typeof o, o);
|
|
||||||
}
|
|
||||||
p(function(b) {
|
|
||||||
var a = b += 1;
|
|
||||||
--b;
|
|
||||||
return a;
|
|
||||||
}("object"));
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
function p(o) {
|
|
||||||
console.log(typeof o, o);
|
|
||||||
}
|
|
||||||
p(function(b) {
|
|
||||||
var a = b += 1;
|
|
||||||
--b;
|
|
||||||
return a;
|
|
||||||
}("object"));
|
|
||||||
}
|
|
||||||
expect_stdout: "string object1"
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3375_2: {
|
|
||||||
options = {
|
|
||||||
assignments: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function p(o) {
|
|
||||||
console.log(typeof o, o);
|
|
||||||
}
|
|
||||||
p(function(b) {
|
|
||||||
var a = b -= 1;
|
|
||||||
--b;
|
|
||||||
return a;
|
|
||||||
}("object"));
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
function p(o) {
|
|
||||||
console.log(typeof o, o);
|
|
||||||
}
|
|
||||||
p(function(b) {
|
|
||||||
var a = --b;
|
|
||||||
--b;
|
|
||||||
return a;
|
|
||||||
}("object"));
|
|
||||||
}
|
|
||||||
expect_stdout: "number NaN"
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3427: {
|
|
||||||
options = {
|
|
||||||
assignments: true,
|
|
||||||
sequences: true,
|
|
||||||
side_effects: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
(function() {
|
|
||||||
var a;
|
|
||||||
a || (a = {});
|
|
||||||
})();
|
|
||||||
}
|
|
||||||
expect: {}
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3429_1: {
|
|
||||||
options = {
|
|
||||||
assignments: true,
|
|
||||||
side_effects: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var a = "PASS";
|
|
||||||
(function(b) {
|
|
||||||
b && (b = a = "FAIL");
|
|
||||||
})();
|
|
||||||
console.log(a);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var a = "PASS";
|
|
||||||
(function(b) {
|
|
||||||
b = b && (a = "FAIL");
|
|
||||||
})();
|
|
||||||
console.log(a);
|
|
||||||
}
|
|
||||||
expect_stdout: "PASS"
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3429_2: {
|
|
||||||
options = {
|
|
||||||
assignments: true,
|
|
||||||
side_effects: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var a;
|
|
||||||
(function(b) {
|
|
||||||
b || (b = a = "FAIL");
|
|
||||||
})(42);
|
|
||||||
console.log(a);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var a;
|
|
||||||
(function(b) {
|
|
||||||
b = b || (a = "FAIL");
|
|
||||||
})(42);
|
|
||||||
console.log(a);
|
|
||||||
}
|
|
||||||
expect_stdout: "undefined"
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,88 +0,0 @@
|
|||||||
iife_boolean_context: {
|
|
||||||
options = {
|
|
||||||
booleans: true,
|
|
||||||
evaluate: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
console.log(function() {
|
|
||||||
return Object(1) || false;
|
|
||||||
}() ? "PASS" : "FAIL");
|
|
||||||
console.log(function() {
|
|
||||||
return [].length || true;
|
|
||||||
}() ? "PASS" : "FAIL");
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
console.log(function() {
|
|
||||||
return Object(1);
|
|
||||||
}() ? "PASS" : "FAIL");
|
|
||||||
console.log(function() {
|
|
||||||
return [].length, 1;
|
|
||||||
}() ? "PASS" : "FAIL");
|
|
||||||
}
|
|
||||||
expect_stdout: [
|
|
||||||
"PASS",
|
|
||||||
"PASS",
|
|
||||||
]
|
|
||||||
expect_warnings: [
|
|
||||||
"WARN: Dropping side-effect-free || [test/compress/booleans.js:2,19]",
|
|
||||||
"WARN: Boolean || always true [test/compress/booleans.js:5,19]",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3465_1: {
|
|
||||||
options = {
|
|
||||||
booleans: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
console.log(function(a) {
|
|
||||||
return typeof a;
|
|
||||||
}() ? "PASS" : "FAIL");
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
console.log(function(a) {
|
|
||||||
return 1;
|
|
||||||
}() ? "PASS" : "FAIL");
|
|
||||||
}
|
|
||||||
expect_stdout: "PASS"
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3465_2: {
|
|
||||||
options = {
|
|
||||||
booleans: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
console.log(function f(a) {
|
|
||||||
if (!a) console.log(f(42));
|
|
||||||
return typeof a;
|
|
||||||
}() ? "PASS" : "FAIL");
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
console.log(function f(a) {
|
|
||||||
if (!a) console.log(f(42));
|
|
||||||
return typeof a;
|
|
||||||
}() ? "PASS" : "FAIL");
|
|
||||||
}
|
|
||||||
expect_stdout: [
|
|
||||||
"number",
|
|
||||||
"PASS",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3465_3: {
|
|
||||||
options = {
|
|
||||||
booleans: true,
|
|
||||||
passes: 2,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
console.log(function f(a) {
|
|
||||||
return typeof a;
|
|
||||||
}() ? "PASS" : "FAIL");
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
console.log(function(a) {
|
|
||||||
return 1;
|
|
||||||
}() ? "PASS" : "FAIL");
|
|
||||||
}
|
|
||||||
expect_stdout: "PASS"
|
|
||||||
}
|
|
||||||
File diff suppressed because it is too large
Load Diff
76
test/compress/comparing.js
Normal file
76
test/compress/comparing.js
Normal file
@@ -0,0 +1,76 @@
|
|||||||
|
keep_comparisons: {
|
||||||
|
options = {
|
||||||
|
comparisons: true,
|
||||||
|
unsafe_comps: false
|
||||||
|
}
|
||||||
|
input: {
|
||||||
|
var obj1 = {
|
||||||
|
valueOf: function() {triggeredFirst();}
|
||||||
|
}
|
||||||
|
var obj2 = {
|
||||||
|
valueOf: function() {triggeredSecond();}
|
||||||
|
}
|
||||||
|
var result1 = obj1 <= obj2;
|
||||||
|
var result2 = obj1 < obj2;
|
||||||
|
var result3 = obj1 >= obj2;
|
||||||
|
var result4 = obj1 > obj2;
|
||||||
|
}
|
||||||
|
expect: {
|
||||||
|
var obj1 = {
|
||||||
|
valueOf: function() {triggeredFirst();}
|
||||||
|
}
|
||||||
|
var obj2 = {
|
||||||
|
valueOf: function() {triggeredSecond();}
|
||||||
|
}
|
||||||
|
var result1 = obj1 <= obj2;
|
||||||
|
var result2 = obj1 < obj2;
|
||||||
|
var result3 = obj1 >= obj2;
|
||||||
|
var result4 = obj1 > obj2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
keep_comparisons_with_unsafe_comps: {
|
||||||
|
options = {
|
||||||
|
comparisons: true,
|
||||||
|
unsafe_comps: true
|
||||||
|
}
|
||||||
|
input: {
|
||||||
|
var obj1 = {
|
||||||
|
valueOf: function() {triggeredFirst();}
|
||||||
|
}
|
||||||
|
var obj2 = {
|
||||||
|
valueOf: function() {triggeredSecond();}
|
||||||
|
}
|
||||||
|
var result1 = obj1 <= obj2;
|
||||||
|
var result2 = obj1 < obj2;
|
||||||
|
var result3 = obj1 >= obj2;
|
||||||
|
var result4 = obj1 > obj2;
|
||||||
|
}
|
||||||
|
expect: {
|
||||||
|
var obj1 = {
|
||||||
|
valueOf: function() {triggeredFirst();}
|
||||||
|
}
|
||||||
|
var obj2 = {
|
||||||
|
valueOf: function() {triggeredSecond();}
|
||||||
|
}
|
||||||
|
var result1 = obj2 >= obj1;
|
||||||
|
var result2 = obj2 > obj1;
|
||||||
|
var result3 = obj1 >= obj2;
|
||||||
|
var result4 = obj1 > obj2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
dont_change_in_or_instanceof_expressions: {
|
||||||
|
input: {
|
||||||
|
1 in 1;
|
||||||
|
null in null;
|
||||||
|
1 instanceof 1;
|
||||||
|
null instanceof null;
|
||||||
|
}
|
||||||
|
expect: {
|
||||||
|
1 in 1;
|
||||||
|
null in null;
|
||||||
|
1 instanceof 1;
|
||||||
|
null instanceof null;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,442 +0,0 @@
|
|||||||
comparisons: {
|
|
||||||
options = {
|
|
||||||
comparisons: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var obj1, obj2;
|
|
||||||
var result1 = obj1 <= obj2;
|
|
||||||
var result2 = obj1 < obj2;
|
|
||||||
var result3 = obj1 >= obj2;
|
|
||||||
var result4 = obj1 > obj2;
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var obj1, obj2;
|
|
||||||
var result1 = obj1 <= obj2;
|
|
||||||
var result2 = obj1 < obj2;
|
|
||||||
var result3 = obj2 <= obj1;
|
|
||||||
var result4 = obj2 < obj1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
unsafe_comps: {
|
|
||||||
options = {
|
|
||||||
comparisons: true,
|
|
||||||
conditionals: true,
|
|
||||||
unsafe_comps: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var obj1, obj2;
|
|
||||||
obj1 <= obj2 ? f1() : g1();
|
|
||||||
obj1 < obj2 ? f2() : g2();
|
|
||||||
obj1 >= obj2 ? f3() : g3();
|
|
||||||
obj1 > obj2 ? f4() : g4();
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var obj1, obj2;
|
|
||||||
obj2 < obj1 ? g1() : f1();
|
|
||||||
obj1 < obj2 ? f2() : g2();
|
|
||||||
obj1 < obj2 ? g3() : f3();
|
|
||||||
obj2 < obj1 ? f4() : g4();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
dont_change_in_or_instanceof_expressions: {
|
|
||||||
input: {
|
|
||||||
1 in 1;
|
|
||||||
null in null;
|
|
||||||
1 instanceof 1;
|
|
||||||
null instanceof null;
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
1 in 1;
|
|
||||||
null in null;
|
|
||||||
1 instanceof 1;
|
|
||||||
null instanceof null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
self_comparison_1: {
|
|
||||||
options = {
|
|
||||||
comparisons: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
a === a;
|
|
||||||
a !== b;
|
|
||||||
b.c === a.c;
|
|
||||||
b.c !== b.c;
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
a == a;
|
|
||||||
a !== b;
|
|
||||||
b.c === a.c;
|
|
||||||
b.c != b.c;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
self_comparison_2: {
|
|
||||||
options = {
|
|
||||||
comparisons: true,
|
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
toplevel: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function f() {}
|
|
||||||
var o = {};
|
|
||||||
console.log(f != f, o === o);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
function f() {}
|
|
||||||
var o = {};
|
|
||||||
console.log(false, true);
|
|
||||||
}
|
|
||||||
expect_stdout: "false true"
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_2857_1: {
|
|
||||||
options = {
|
|
||||||
comparisons: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function f1(a) {
|
|
||||||
a === undefined || a === null;
|
|
||||||
a === undefined || a !== null;
|
|
||||||
a !== undefined || a === null;
|
|
||||||
a !== undefined || a !== null;
|
|
||||||
a === undefined && a === null;
|
|
||||||
a === undefined && a !== null;
|
|
||||||
a !== undefined && a === null;
|
|
||||||
a !== undefined && a !== null;
|
|
||||||
}
|
|
||||||
function f2(a) {
|
|
||||||
a === null || a === undefined;
|
|
||||||
a === null || a !== undefined;
|
|
||||||
a !== null || a === undefined;
|
|
||||||
a !== null || a !== undefined;
|
|
||||||
a === null && a === undefined;
|
|
||||||
a === null && a !== undefined;
|
|
||||||
a !== null && a === undefined;
|
|
||||||
a !== null && a !== undefined;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
function f1(a) {
|
|
||||||
null == a;
|
|
||||||
void 0 === a || null !== a;
|
|
||||||
void 0 !== a || null === a;
|
|
||||||
void 0 !== a || null !== a;
|
|
||||||
void 0 === a && null === a;
|
|
||||||
void 0 === a && null !== a;
|
|
||||||
void 0 !== a && null === a;
|
|
||||||
null != a;
|
|
||||||
}
|
|
||||||
function f2(a) {
|
|
||||||
null == a;
|
|
||||||
null === a || void 0 !== a;
|
|
||||||
null !== a || void 0 === a;
|
|
||||||
null !== a || void 0 !== a;
|
|
||||||
null === a && void 0 === a;
|
|
||||||
null === a && void 0 !== a;
|
|
||||||
null !== a && void 0 === a;
|
|
||||||
null != a;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_2857_2: {
|
|
||||||
options = {
|
|
||||||
comparisons: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function f(a, p) {
|
|
||||||
a === undefined || a === null || p;
|
|
||||||
a === undefined || a !== null || p;
|
|
||||||
a !== undefined || a === null || p;
|
|
||||||
a !== undefined || a !== null || p;
|
|
||||||
a === undefined && a === null || p;
|
|
||||||
a === undefined && a !== null || p;
|
|
||||||
a !== undefined && a === null || p;
|
|
||||||
a !== undefined && a !== null || p;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
function f(a, p) {
|
|
||||||
null == a || p;
|
|
||||||
void 0 === a || null !== a || p;
|
|
||||||
void 0 !== a || null === a || p;
|
|
||||||
void 0 !== a || null !== a || p;
|
|
||||||
void 0 === a && null === a || p;
|
|
||||||
void 0 === a && null !== a || p;
|
|
||||||
void 0 !== a && null === a || p;
|
|
||||||
null != a || p;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_2857_3: {
|
|
||||||
options = {
|
|
||||||
comparisons: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function f(a, p) {
|
|
||||||
a === undefined || a === null && p;
|
|
||||||
a === undefined || a !== null && p;
|
|
||||||
a !== undefined || a === null && p;
|
|
||||||
a !== undefined || a !== null && p;
|
|
||||||
a === undefined && a === null && p;
|
|
||||||
a === undefined && a !== null && p;
|
|
||||||
a !== undefined && a === null && p;
|
|
||||||
a !== undefined && a !== null && p;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
function f(a, p) {
|
|
||||||
void 0 === a || null === a && p;
|
|
||||||
void 0 === a || null !== a && p;
|
|
||||||
void 0 !== a || null === a && p;
|
|
||||||
void 0 !== a || null !== a && p;
|
|
||||||
void 0 === a && null === a && p;
|
|
||||||
void 0 === a && null !== a && p;
|
|
||||||
void 0 !== a && null === a && p;
|
|
||||||
null != a && p;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_2857_4: {
|
|
||||||
options = {
|
|
||||||
comparisons: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function f(a, p) {
|
|
||||||
p || a === undefined || a === null;
|
|
||||||
p || a === undefined || a !== null;
|
|
||||||
p || a !== undefined || a === null;
|
|
||||||
p || a !== undefined || a !== null;
|
|
||||||
p || a === undefined && a === null;
|
|
||||||
p || a === undefined && a !== null;
|
|
||||||
p || a !== undefined && a === null;
|
|
||||||
p || a !== undefined && a !== null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
function f(a, p) {
|
|
||||||
p || null == a;
|
|
||||||
p || void 0 === a || null !== a;
|
|
||||||
p || void 0 !== a || null === a;
|
|
||||||
p || void 0 !== a || null !== a;
|
|
||||||
p || void 0 === a && null === a;
|
|
||||||
p || void 0 === a && null !== a;
|
|
||||||
p || void 0 !== a && null === a;
|
|
||||||
p || null != a;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_2857_5: {
|
|
||||||
options = {
|
|
||||||
comparisons: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function f(a, p) {
|
|
||||||
p && a === undefined || a === null;
|
|
||||||
p && a === undefined || a !== null;
|
|
||||||
p && a !== undefined || a === null;
|
|
||||||
p && a !== undefined || a !== null;
|
|
||||||
p && a === undefined && a === null;
|
|
||||||
p && a === undefined && a !== null;
|
|
||||||
p && a !== undefined && a === null;
|
|
||||||
p && a !== undefined && a !== null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
function f(a, p) {
|
|
||||||
p && void 0 === a || null === a;
|
|
||||||
p && void 0 === a || null !== a;
|
|
||||||
p && void 0 !== a || null === a;
|
|
||||||
p && void 0 !== a || null !== a;
|
|
||||||
p && void 0 === a && null === a;
|
|
||||||
p && void 0 === a && null !== a;
|
|
||||||
p && void 0 !== a && null === a;
|
|
||||||
p && null != a;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_2857_6: {
|
|
||||||
options = {
|
|
||||||
comparisons: true,
|
|
||||||
pure_getters: "strict",
|
|
||||||
reduce_vars: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function f(a) {
|
|
||||||
if (({}).b === undefined || {}.b === null)
|
|
||||||
return a.b !== undefined && a.b !== null;
|
|
||||||
}
|
|
||||||
console.log(f({
|
|
||||||
a: [ null ],
|
|
||||||
get b() {
|
|
||||||
return this.a.shift();
|
|
||||||
}
|
|
||||||
}));
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
function f(a) {
|
|
||||||
if (null == {}.b)
|
|
||||||
return void 0 !== a.b && null !== a.b;
|
|
||||||
}
|
|
||||||
console.log(f({
|
|
||||||
a: [ null ],
|
|
||||||
get b() {
|
|
||||||
return this.a.shift();
|
|
||||||
}
|
|
||||||
}));
|
|
||||||
}
|
|
||||||
expect_stdout: "true"
|
|
||||||
}
|
|
||||||
|
|
||||||
is_boolean_unsafe: {
|
|
||||||
options = {
|
|
||||||
comparisons: true,
|
|
||||||
unsafe: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
console.log(/foo/.test("bar") === [].isPrototypeOf({}));
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
console.log(/foo/.test("bar") == [].isPrototypeOf({}));
|
|
||||||
}
|
|
||||||
expect_stdout: "true"
|
|
||||||
}
|
|
||||||
|
|
||||||
is_number_unsafe: {
|
|
||||||
options = {
|
|
||||||
comparisons: true,
|
|
||||||
unsafe: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
console.log(Math.acos(42) !== "foo".charCodeAt(4));
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
console.log(Math.acos(42) != "foo".charCodeAt(4));
|
|
||||||
}
|
|
||||||
expect_stdout: "true"
|
|
||||||
}
|
|
||||||
|
|
||||||
is_boolean_var: {
|
|
||||||
options = {
|
|
||||||
comparisons: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
console.log(function(a, b) {
|
|
||||||
for (var i = 0, c = !b; i < a.length; i++)
|
|
||||||
if (!a[i] === c)
|
|
||||||
return i;
|
|
||||||
}([ false, true ], 42));
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
console.log(function(a, b) {
|
|
||||||
for (var i = 0, c = !b; i < a.length; i++)
|
|
||||||
if (!a[i] == c)
|
|
||||||
return i;
|
|
||||||
}([ false, true ], 42));
|
|
||||||
}
|
|
||||||
expect_stdout: "1"
|
|
||||||
}
|
|
||||||
|
|
||||||
is_defined: {
|
|
||||||
options = {
|
|
||||||
comparisons: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
console.log(function a() {
|
|
||||||
return void 0 === a;
|
|
||||||
}());
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
console.log(function a() {
|
|
||||||
return a, false;
|
|
||||||
}());
|
|
||||||
}
|
|
||||||
expect_stdout: "false"
|
|
||||||
expect_warnings: [
|
|
||||||
"WARN: Expression always defined [test/compress/comparisons.js:2,19]",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
unsafe_indexOf: {
|
|
||||||
options = {
|
|
||||||
booleans: true,
|
|
||||||
comparisons: true,
|
|
||||||
unsafe: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var a = Object.keys({ foo: 42 });
|
|
||||||
if (a.indexOf("bar") < 0) console.log("PASS");
|
|
||||||
if (0 > a.indexOf("bar")) console.log("PASS");
|
|
||||||
if (a.indexOf("foo") >= 0) console.log("PASS");
|
|
||||||
if (0 <= a.indexOf("foo")) console.log("PASS");
|
|
||||||
if (a.indexOf("foo") > -1) console.log("PASS");
|
|
||||||
if (-1 < a.indexOf("foo")) console.log("PASS");
|
|
||||||
if (a.indexOf("bar") == -1) console.log("PASS");
|
|
||||||
if (-1 == a.indexOf("bar")) console.log("PASS");
|
|
||||||
if (a.indexOf("bar") === -1) console.log("PASS");
|
|
||||||
if (-1 === a.indexOf("bar")) console.log("PASS");
|
|
||||||
if (a.indexOf("foo") != -1) console.log("PASS");
|
|
||||||
if (-1 != a.indexOf("foo")) console.log("PASS");
|
|
||||||
if (a.indexOf("foo") !== -1) console.log("PASS");
|
|
||||||
if (-1 !== a.indexOf("foo")) console.log("PASS");
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var a = Object.keys({ foo: 42 });
|
|
||||||
if (!~a.indexOf("bar")) console.log("PASS");
|
|
||||||
if (!~a.indexOf("bar")) console.log("PASS");
|
|
||||||
if (~a.indexOf("foo")) console.log("PASS");
|
|
||||||
if (~a.indexOf("foo")) console.log("PASS");
|
|
||||||
if (~a.indexOf("foo")) console.log("PASS");
|
|
||||||
if (~a.indexOf("foo")) console.log("PASS");
|
|
||||||
if (!~a.indexOf("bar")) console.log("PASS");
|
|
||||||
if (!~a.indexOf("bar")) console.log("PASS");
|
|
||||||
if (!~a.indexOf("bar")) console.log("PASS");
|
|
||||||
if (!~a.indexOf("bar")) console.log("PASS");
|
|
||||||
if (~a.indexOf("foo")) console.log("PASS");
|
|
||||||
if (~a.indexOf("foo")) console.log("PASS");
|
|
||||||
if (~a.indexOf("foo")) console.log("PASS");
|
|
||||||
if (~a.indexOf("foo")) console.log("PASS");
|
|
||||||
}
|
|
||||||
expect_stdout: [
|
|
||||||
"PASS",
|
|
||||||
"PASS",
|
|
||||||
"PASS",
|
|
||||||
"PASS",
|
|
||||||
"PASS",
|
|
||||||
"PASS",
|
|
||||||
"PASS",
|
|
||||||
"PASS",
|
|
||||||
"PASS",
|
|
||||||
"PASS",
|
|
||||||
"PASS",
|
|
||||||
"PASS",
|
|
||||||
"PASS",
|
|
||||||
"PASS",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3413: {
|
|
||||||
options = {
|
|
||||||
comparisons: true,
|
|
||||||
evaluate: true,
|
|
||||||
side_effects: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var b;
|
|
||||||
void 0 !== ("" < b || void 0) || console.log("PASS");
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var b;
|
|
||||||
void 0 !== ("" < b || void 0) || console.log("PASS");
|
|
||||||
}
|
|
||||||
expect_stdout: "PASS"
|
|
||||||
}
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
concat_1: {
|
concat_1: {
|
||||||
options = {
|
options = {
|
||||||
evaluate: true,
|
evaluate: true
|
||||||
}
|
};
|
||||||
input: {
|
input: {
|
||||||
var a = "foo" + "bar" + x() + "moo" + "foo" + y() + "x" + "y" + "z" + q();
|
var a = "foo" + "bar" + x() + "moo" + "foo" + y() + "x" + "y" + "z" + q();
|
||||||
var b = "foo" + 1 + x() + 2 + "boo";
|
var b = "foo" + 1 + x() + 2 + "boo";
|
||||||
@@ -21,12 +21,12 @@ concat_1: {
|
|||||||
var c = 1 + x() + 2 + "boo";
|
var c = 1 + x() + 2 + "boo";
|
||||||
var d = 1 + x() + 2 + 3 + "boo";
|
var d = 1 + x() + 2 + 3 + "boo";
|
||||||
var e = 1 + x() + 2 + "X3boo";
|
var e = 1 + x() + 2 + "X3boo";
|
||||||
var f = "\x00360\x008\0";
|
var f = "\x00360\08\0";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
concat_2: {
|
concat_2: {
|
||||||
options = {}
|
options = {};
|
||||||
input: {
|
input: {
|
||||||
console.log(
|
console.log(
|
||||||
1 + (2 + 3),
|
1 + (2 + 3),
|
||||||
@@ -55,7 +55,7 @@ concat_2: {
|
|||||||
}
|
}
|
||||||
|
|
||||||
concat_3: {
|
concat_3: {
|
||||||
options = {}
|
options = {};
|
||||||
input: {
|
input: {
|
||||||
console.log(
|
console.log(
|
||||||
1 + 2 + (3 + 4 + 5),
|
1 + 2 + (3 + 4 + 5),
|
||||||
@@ -84,7 +84,7 @@ concat_3: {
|
|||||||
}
|
}
|
||||||
|
|
||||||
concat_4: {
|
concat_4: {
|
||||||
options = {}
|
options = {};
|
||||||
input: {
|
input: {
|
||||||
console.log(
|
console.log(
|
||||||
1 + "2" + (3 + 4 + 5),
|
1 + "2" + (3 + 4 + 5),
|
||||||
@@ -113,7 +113,7 @@ concat_4: {
|
|||||||
}
|
}
|
||||||
|
|
||||||
concat_5: {
|
concat_5: {
|
||||||
options = {}
|
options = {};
|
||||||
input: {
|
input: {
|
||||||
console.log(
|
console.log(
|
||||||
"1" + 2 + (3 + 4 + 5),
|
"1" + 2 + (3 + 4 + 5),
|
||||||
@@ -142,7 +142,7 @@ concat_5: {
|
|||||||
}
|
}
|
||||||
|
|
||||||
concat_6: {
|
concat_6: {
|
||||||
options = {}
|
options = {};
|
||||||
input: {
|
input: {
|
||||||
console.log(
|
console.log(
|
||||||
"1" + "2" + (3 + 4 + 5),
|
"1" + "2" + (3 + 4 + 5),
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
ifs_1: {
|
ifs_1: {
|
||||||
options = {
|
options = {
|
||||||
conditionals: true,
|
conditionals: true
|
||||||
}
|
};
|
||||||
input: {
|
input: {
|
||||||
if (foo) bar();
|
if (foo) bar();
|
||||||
if (!foo); else bar();
|
if (!foo); else bar();
|
||||||
@@ -18,8 +18,8 @@ ifs_1: {
|
|||||||
|
|
||||||
ifs_2: {
|
ifs_2: {
|
||||||
options = {
|
options = {
|
||||||
conditionals: true,
|
conditionals: true
|
||||||
}
|
};
|
||||||
input: {
|
input: {
|
||||||
if (foo) {
|
if (foo) {
|
||||||
x();
|
x();
|
||||||
@@ -47,12 +47,12 @@ ifs_2: {
|
|||||||
|
|
||||||
ifs_3_should_warn: {
|
ifs_3_should_warn: {
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
conditionals : true,
|
||||||
conditionals: true,
|
dead_code : true,
|
||||||
dead_code: true,
|
evaluate : true,
|
||||||
evaluate: true,
|
booleans : true,
|
||||||
side_effects: true,
|
side_effects : true,
|
||||||
}
|
};
|
||||||
input: {
|
input: {
|
||||||
var x, y;
|
var x, y;
|
||||||
if (x && !(x + "1") && y) { // 1
|
if (x && !(x + "1") && y) { // 1
|
||||||
@@ -78,8 +78,8 @@ ifs_3_should_warn: {
|
|||||||
|
|
||||||
ifs_4: {
|
ifs_4: {
|
||||||
options = {
|
options = {
|
||||||
conditionals: true,
|
conditionals: true
|
||||||
}
|
};
|
||||||
input: {
|
input: {
|
||||||
if (foo && bar) {
|
if (foo && bar) {
|
||||||
x(foo)[10].bar.baz = something();
|
x(foo)[10].bar.baz = something();
|
||||||
@@ -95,10 +95,10 @@ ifs_4: {
|
|||||||
|
|
||||||
ifs_5: {
|
ifs_5: {
|
||||||
options = {
|
options = {
|
||||||
comparisons: true,
|
|
||||||
conditionals: true,
|
|
||||||
if_return: true,
|
if_return: true,
|
||||||
}
|
conditionals: true,
|
||||||
|
comparisons: true,
|
||||||
|
};
|
||||||
input: {
|
input: {
|
||||||
function f() {
|
function f() {
|
||||||
if (foo) return;
|
if (foo) return;
|
||||||
@@ -132,9 +132,9 @@ ifs_5: {
|
|||||||
|
|
||||||
ifs_6: {
|
ifs_6: {
|
||||||
options = {
|
options = {
|
||||||
comparisons: true,
|
|
||||||
conditionals: true,
|
conditionals: true,
|
||||||
}
|
comparisons: true
|
||||||
|
};
|
||||||
input: {
|
input: {
|
||||||
var x, y;
|
var x, y;
|
||||||
if (!foo && !bar && !baz && !boo) {
|
if (!foo && !bar && !baz && !boo) {
|
||||||
@@ -161,74 +161,52 @@ ifs_6: {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ifs_7: {
|
|
||||||
options = {
|
|
||||||
conditionals: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
if (A); else;
|
|
||||||
if (A) while (B); else;
|
|
||||||
if (A); else while (C);
|
|
||||||
if (A) while (B); else while (C);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
A;
|
|
||||||
if (A) while (B);
|
|
||||||
if (!A) while (C);
|
|
||||||
if (A) while (B); else while (C);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
cond_1: {
|
cond_1: {
|
||||||
options = {
|
options = {
|
||||||
conditionals: true,
|
conditionals: true
|
||||||
}
|
};
|
||||||
input: {
|
input: {
|
||||||
function foo(do_something, some_condition) {
|
var do_something; // if undeclared it's assumed to have side-effects
|
||||||
if (some_condition) {
|
if (some_condition()) {
|
||||||
do_something(x);
|
do_something(x);
|
||||||
} else {
|
} else {
|
||||||
do_something(y);
|
do_something(y);
|
||||||
}
|
}
|
||||||
if (some_condition) {
|
if (some_condition()) {
|
||||||
side_effects(x);
|
side_effects(x);
|
||||||
} else {
|
} else {
|
||||||
side_effects(y);
|
side_effects(y);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
expect: {
|
expect: {
|
||||||
function foo(do_something, some_condition) {
|
var do_something;
|
||||||
do_something(some_condition ? x : y);
|
do_something(some_condition() ? x : y);
|
||||||
some_condition ? side_effects(x) : side_effects(y);
|
some_condition() ? side_effects(x) : side_effects(y);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
cond_2: {
|
cond_2: {
|
||||||
options = {
|
options = {
|
||||||
conditionals: true,
|
conditionals: true
|
||||||
}
|
};
|
||||||
input: {
|
input: {
|
||||||
function foo(x, FooBar, some_condition) {
|
var x, FooBar;
|
||||||
if (some_condition) {
|
if (some_condition()) {
|
||||||
x = new FooBar(1);
|
x = new FooBar(1);
|
||||||
} else {
|
} else {
|
||||||
x = new FooBar(2);
|
x = new FooBar(2);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
expect: {
|
expect: {
|
||||||
function foo(x, FooBar, some_condition) {
|
var x, FooBar;
|
||||||
x = new FooBar(some_condition ? 1 : 2);
|
x = new FooBar(some_condition() ? 1 : 2);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
cond_3: {
|
cond_3: {
|
||||||
options = {
|
options = {
|
||||||
conditionals: true,
|
conditionals: true
|
||||||
}
|
};
|
||||||
input: {
|
input: {
|
||||||
var FooBar;
|
var FooBar;
|
||||||
if (some_condition()) {
|
if (some_condition()) {
|
||||||
@@ -245,8 +223,8 @@ cond_3: {
|
|||||||
|
|
||||||
cond_4: {
|
cond_4: {
|
||||||
options = {
|
options = {
|
||||||
conditionals: true,
|
conditionals: true
|
||||||
}
|
};
|
||||||
input: {
|
input: {
|
||||||
var do_something;
|
var do_something;
|
||||||
if (some_condition()) {
|
if (some_condition()) {
|
||||||
@@ -269,8 +247,8 @@ cond_4: {
|
|||||||
|
|
||||||
cond_5: {
|
cond_5: {
|
||||||
options = {
|
options = {
|
||||||
conditionals: true,
|
conditionals: true
|
||||||
}
|
};
|
||||||
input: {
|
input: {
|
||||||
if (some_condition()) {
|
if (some_condition()) {
|
||||||
if (some_other_condition()) {
|
if (some_other_condition()) {
|
||||||
@@ -297,9 +275,9 @@ cond_5: {
|
|||||||
cond_7: {
|
cond_7: {
|
||||||
options = {
|
options = {
|
||||||
conditionals: true,
|
conditionals: true,
|
||||||
evaluate: true,
|
evaluate : true,
|
||||||
side_effects: true,
|
side_effects: true,
|
||||||
}
|
};
|
||||||
input: {
|
input: {
|
||||||
var x, y, z, a, b;
|
var x, y, z, a, b;
|
||||||
// compress these
|
// compress these
|
||||||
@@ -350,7 +328,7 @@ cond_7: {
|
|||||||
x = 'foo';
|
x = 'foo';
|
||||||
x = 'foo';
|
x = 'foo';
|
||||||
x = (condition(), 20);
|
x = (condition(), 20);
|
||||||
x = (z || condition(), 'fuji');
|
x = z ? 'fuji' : (condition(), 'fuji');
|
||||||
x = (condition(), 'foobar');
|
x = (condition(), 'foobar');
|
||||||
x = y ? a : b;
|
x = y ? a : b;
|
||||||
x = y ? 'foo' : 'fo';
|
x = y ? 'foo' : 'fo';
|
||||||
@@ -360,8 +338,8 @@ cond_7: {
|
|||||||
cond_7_1: {
|
cond_7_1: {
|
||||||
options = {
|
options = {
|
||||||
conditionals: true,
|
conditionals: true,
|
||||||
evaluate: true,
|
evaluate : true
|
||||||
}
|
};
|
||||||
input: {
|
input: {
|
||||||
var x;
|
var x;
|
||||||
// access to global should be assumed to have side effects
|
// access to global should be assumed to have side effects
|
||||||
@@ -379,10 +357,10 @@ cond_7_1: {
|
|||||||
|
|
||||||
cond_8: {
|
cond_8: {
|
||||||
options = {
|
options = {
|
||||||
booleans: false,
|
|
||||||
conditionals: true,
|
conditionals: true,
|
||||||
evaluate: true,
|
evaluate : true,
|
||||||
}
|
booleans : false
|
||||||
|
};
|
||||||
input: {
|
input: {
|
||||||
var a;
|
var a;
|
||||||
// compress these
|
// compress these
|
||||||
@@ -463,10 +441,10 @@ cond_8: {
|
|||||||
|
|
||||||
cond_8b: {
|
cond_8b: {
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
|
||||||
conditionals: true,
|
conditionals: true,
|
||||||
evaluate: true,
|
evaluate : true,
|
||||||
}
|
booleans : true
|
||||||
|
};
|
||||||
input: {
|
input: {
|
||||||
var a;
|
var a;
|
||||||
// compress these
|
// compress these
|
||||||
@@ -546,10 +524,10 @@ cond_8b: {
|
|||||||
|
|
||||||
cond_8c: {
|
cond_8c: {
|
||||||
options = {
|
options = {
|
||||||
booleans: false,
|
|
||||||
conditionals: true,
|
conditionals: true,
|
||||||
evaluate: false,
|
evaluate : false,
|
||||||
}
|
booleans : false
|
||||||
|
};
|
||||||
input: {
|
input: {
|
||||||
var a;
|
var a;
|
||||||
// compress these
|
// compress these
|
||||||
@@ -627,59 +605,11 @@ cond_8c: {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
cond_9: {
|
|
||||||
options = {
|
|
||||||
conditionals: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function f(x, y) {
|
|
||||||
g() ? x(1) : x(2);
|
|
||||||
x ? (y || x)() : (y || x)();
|
|
||||||
x ? y(a, b) : y(d, b, c);
|
|
||||||
x ? y(a, b, c) : y(a, b, c);
|
|
||||||
x ? y(a, b, c) : y(a, b, f);
|
|
||||||
x ? y(a, b, c) : y(a, e, c);
|
|
||||||
x ? y(a, b, c) : y(a, e, f);
|
|
||||||
x ? y(a, b, c) : y(d, b, c);
|
|
||||||
x ? y(a, b, c) : y(d, b, f);
|
|
||||||
x ? y(a, b, c) : y(d, e, c);
|
|
||||||
x ? y(a, b, c) : y(d, e, f);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
function f(x, y) {
|
|
||||||
g() ? x(1) : x(2);
|
|
||||||
x, (y || x)();
|
|
||||||
x ? y(a, b) : y(d, b, c);
|
|
||||||
x, y(a, b, c);
|
|
||||||
y(a, b, x ? c : f);
|
|
||||||
y(a, x ? b : e, c);
|
|
||||||
x ? y(a, b, c) : y(a, e, f);
|
|
||||||
y(x ? a : d, b, c);
|
|
||||||
x ? y(a, b, c) : y(d, b, f);
|
|
||||||
x ? y(a, b, c) : y(d, e, c);
|
|
||||||
x ? y(a, b, c) : y(d, e, f);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ternary_boolean_consequent: {
|
ternary_boolean_consequent: {
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
collapse_vars:true, sequences:true, properties:true, dead_code:true, conditionals:true,
|
||||||
collapse_vars: true,
|
comparisons:true, evaluate:true, booleans:true, loops:true, unused:true, hoist_funs:true,
|
||||||
comparisons: true,
|
keep_fargs:true, if_return:true, join_vars:true, cascade:true, side_effects:true
|
||||||
conditionals: true,
|
|
||||||
dead_code: true,
|
|
||||||
evaluate: true,
|
|
||||||
hoist_funs: true,
|
|
||||||
if_return: true,
|
|
||||||
join_vars: true,
|
|
||||||
keep_fargs: true,
|
|
||||||
loops: true,
|
|
||||||
properties: true,
|
|
||||||
sequences: true,
|
|
||||||
side_effects: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
function f1() { return a == b ? true : x; }
|
function f1() { return a == b ? true : x; }
|
||||||
@@ -705,21 +635,9 @@ ternary_boolean_consequent: {
|
|||||||
|
|
||||||
ternary_boolean_alternative: {
|
ternary_boolean_alternative: {
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
collapse_vars:true, sequences:true, properties:true, dead_code:true, conditionals:true,
|
||||||
collapse_vars: true,
|
comparisons:true, evaluate:true, booleans:true, loops:true, unused:true, hoist_funs:true,
|
||||||
comparisons: true,
|
keep_fargs:true, if_return:true, join_vars:true, cascade:true, side_effects:true
|
||||||
conditionals: true,
|
|
||||||
dead_code: true,
|
|
||||||
evaluate: true,
|
|
||||||
hoist_funs: true,
|
|
||||||
if_return: true,
|
|
||||||
join_vars: true,
|
|
||||||
keep_fargs: true,
|
|
||||||
loops: true,
|
|
||||||
properties: true,
|
|
||||||
sequences: true,
|
|
||||||
side_effects: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
function f1() { return a == b ? x : true; }
|
function f1() { return a == b ? x : true; }
|
||||||
@@ -745,11 +663,10 @@ ternary_boolean_alternative: {
|
|||||||
|
|
||||||
trivial_boolean_ternary_expressions : {
|
trivial_boolean_ternary_expressions : {
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
|
||||||
conditionals: true,
|
conditionals: true,
|
||||||
evaluate: true,
|
evaluate : true,
|
||||||
side_effects: true,
|
booleans : true
|
||||||
}
|
};
|
||||||
input: {
|
input: {
|
||||||
f('foo' in m ? true : false);
|
f('foo' in m ? true : false);
|
||||||
f('foo' in m ? false : true);
|
f('foo' in m ? false : true);
|
||||||
@@ -820,11 +737,11 @@ trivial_boolean_ternary_expressions : {
|
|||||||
|
|
||||||
issue_1154: {
|
issue_1154: {
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
|
||||||
conditionals: true,
|
conditionals: true,
|
||||||
evaluate: true,
|
evaluate : true,
|
||||||
|
booleans : true,
|
||||||
side_effects: true,
|
side_effects: true,
|
||||||
}
|
};
|
||||||
input: {
|
input: {
|
||||||
function f1(x) { return x ? -1 : -1; }
|
function f1(x) { return x ? -1 : -1; }
|
||||||
function f2(x) { return x ? +2 : +2; }
|
function f2(x) { return x ? +2 : +2; }
|
||||||
@@ -860,7 +777,7 @@ issue_1154: {
|
|||||||
no_evaluate: {
|
no_evaluate: {
|
||||||
options = {
|
options = {
|
||||||
conditionals: true,
|
conditionals: true,
|
||||||
evaluate: false,
|
evaluate : false,
|
||||||
side_effects: true,
|
side_effects: true,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
@@ -1062,12 +979,12 @@ delete_conditional_1: {
|
|||||||
console.log(delete (1 ? 0 / 0 : x));
|
console.log(delete (1 ? 0 / 0 : x));
|
||||||
}
|
}
|
||||||
expect: {
|
expect: {
|
||||||
console.log(!0);
|
console.log((void 0, !0));
|
||||||
console.log(!0);
|
console.log((void 0, !0));
|
||||||
console.log(!0);
|
console.log((1 / 0, !0));
|
||||||
console.log(!0);
|
console.log((1 / 0, !0));
|
||||||
console.log(!0);
|
console.log((NaN, !0));
|
||||||
console.log(!0);
|
console.log((NaN, !0));
|
||||||
}
|
}
|
||||||
expect_stdout: true
|
expect_stdout: true
|
||||||
}
|
}
|
||||||
@@ -1089,429 +1006,12 @@ delete_conditional_2: {
|
|||||||
console.log(delete (0 ? x : 0 / 0));
|
console.log(delete (0 ? x : 0 / 0));
|
||||||
}
|
}
|
||||||
expect: {
|
expect: {
|
||||||
console.log(!0);
|
console.log((void 0, !0));
|
||||||
console.log(!0);
|
console.log((void 0, !0));
|
||||||
console.log(!0);
|
console.log((Infinity, !0));
|
||||||
console.log(!0);
|
console.log((1 / 0, !0));
|
||||||
console.log(!0);
|
console.log((NaN, !0));
|
||||||
console.log(!0);
|
console.log((NaN, !0));
|
||||||
}
|
}
|
||||||
expect_stdout: true
|
expect_stdout: true
|
||||||
}
|
}
|
||||||
|
|
||||||
issue_2535_1: {
|
|
||||||
options = {
|
|
||||||
booleans: true,
|
|
||||||
conditionals: true,
|
|
||||||
evaluate: true,
|
|
||||||
passes: 2,
|
|
||||||
side_effects: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
if (true || x()) y();
|
|
||||||
if (true && x()) y();
|
|
||||||
if (x() || true) y();
|
|
||||||
if (x() && true) y();
|
|
||||||
if (false || x()) y();
|
|
||||||
if (false && x()) y();
|
|
||||||
if (x() || false) y();
|
|
||||||
if (x() && false) y();
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
y();
|
|
||||||
x() && y();
|
|
||||||
(x(), 1) && y();
|
|
||||||
x() && y();
|
|
||||||
x() && y();
|
|
||||||
x() && y();
|
|
||||||
(x(), 0) && y();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_2535_2: {
|
|
||||||
options = {
|
|
||||||
booleans: true,
|
|
||||||
conditionals: true,
|
|
||||||
evaluate: true,
|
|
||||||
side_effects: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function x() {}
|
|
||||||
function y() {
|
|
||||||
return "foo";
|
|
||||||
}
|
|
||||||
console.log((x() || true) || y());
|
|
||||||
console.log((y() || true) || x());
|
|
||||||
console.log((x() || true) && y());
|
|
||||||
console.log((y() || true) && x());
|
|
||||||
console.log((x() && true) || y());
|
|
||||||
console.log((y() && true) || x());
|
|
||||||
console.log((x() && true) && y());
|
|
||||||
console.log((y() && true) && x());
|
|
||||||
console.log((x() || false) || y());
|
|
||||||
console.log((y() || false) || x());
|
|
||||||
console.log((x() || false) && y());
|
|
||||||
console.log((y() || false) && x());
|
|
||||||
console.log((x() && false) || y());
|
|
||||||
console.log((y() && false) || x());
|
|
||||||
console.log((x() && false) && y());
|
|
||||||
console.log((y() && false) && x());
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
function x() {}
|
|
||||||
function y() {
|
|
||||||
return "foo";
|
|
||||||
}
|
|
||||||
console.log(x() || !0);
|
|
||||||
console.log(y() || !0);
|
|
||||||
console.log((x(), y()));
|
|
||||||
console.log((y(), x()));
|
|
||||||
console.log(!!x() || y());
|
|
||||||
console.log(!!y() || x());
|
|
||||||
console.log(x() && y());
|
|
||||||
console.log(y() && x());
|
|
||||||
console.log(x() || y());
|
|
||||||
console.log(y() || x());
|
|
||||||
console.log(!!x() && y());
|
|
||||||
console.log(!!y() && x());
|
|
||||||
console.log((x(), y()));
|
|
||||||
console.log((y(), x()));
|
|
||||||
console.log(x() && !1);
|
|
||||||
console.log(y() && !1);
|
|
||||||
}
|
|
||||||
expect_stdout: [
|
|
||||||
"true",
|
|
||||||
"foo",
|
|
||||||
"foo",
|
|
||||||
"undefined",
|
|
||||||
"foo",
|
|
||||||
"true",
|
|
||||||
"undefined",
|
|
||||||
"undefined",
|
|
||||||
"foo",
|
|
||||||
"foo",
|
|
||||||
"false",
|
|
||||||
"undefined",
|
|
||||||
"foo",
|
|
||||||
"undefined",
|
|
||||||
"undefined",
|
|
||||||
"false",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_2560: {
|
|
||||||
options = {
|
|
||||||
conditionals: true,
|
|
||||||
inline: true,
|
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
toplevel: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function log(x) {
|
|
||||||
console.log(x);
|
|
||||||
}
|
|
||||||
function foo() {
|
|
||||||
return log;
|
|
||||||
}
|
|
||||||
function bar() {
|
|
||||||
if (x !== (x = foo())) {
|
|
||||||
x(1);
|
|
||||||
} else {
|
|
||||||
x(2);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
var x = function() {
|
|
||||||
console.log("init");
|
|
||||||
};
|
|
||||||
bar();
|
|
||||||
bar();
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
function log(x) {
|
|
||||||
console.log(x);
|
|
||||||
}
|
|
||||||
function bar() {
|
|
||||||
x !== (x = log) ? x(1) : x(2);
|
|
||||||
}
|
|
||||||
var x = function() {
|
|
||||||
console.log("init");
|
|
||||||
};
|
|
||||||
bar();
|
|
||||||
bar();
|
|
||||||
}
|
|
||||||
expect_stdout: [
|
|
||||||
"1",
|
|
||||||
"2",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
hoist_decl: {
|
|
||||||
options = {
|
|
||||||
conditionals: true,
|
|
||||||
join_vars: true,
|
|
||||||
sequences: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
if (x()) {
|
|
||||||
var a;
|
|
||||||
y();
|
|
||||||
} else {
|
|
||||||
z();
|
|
||||||
var b;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var a, b;
|
|
||||||
x() ? y() : z();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
to_and_or: {
|
|
||||||
options = {
|
|
||||||
conditionals: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var values = [
|
|
||||||
0,
|
|
||||||
null,
|
|
||||||
true,
|
|
||||||
"foo",
|
|
||||||
false,
|
|
||||||
-1 / 0,
|
|
||||||
void 0,
|
|
||||||
];
|
|
||||||
values.forEach(function(x) {
|
|
||||||
values.forEach(function(y) {
|
|
||||||
values.forEach(function(z) {
|
|
||||||
console.log(x ? y || z : z);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var values = [
|
|
||||||
0,
|
|
||||||
null,
|
|
||||||
true,
|
|
||||||
"foo",
|
|
||||||
false,
|
|
||||||
-1 / 0,
|
|
||||||
void 0,
|
|
||||||
];
|
|
||||||
values.forEach(function(x) {
|
|
||||||
values.forEach(function(y) {
|
|
||||||
values.forEach(function(z) {
|
|
||||||
console.log(x && y || z);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
expect_stdout: true
|
|
||||||
}
|
|
||||||
|
|
||||||
cond_seq_assign_1: {
|
|
||||||
options = {
|
|
||||||
conditionals: true,
|
|
||||||
sequences: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function f(a) {
|
|
||||||
var t;
|
|
||||||
if (a) {
|
|
||||||
t = "foo";
|
|
||||||
t = "bar";
|
|
||||||
} else {
|
|
||||||
console.log(t);
|
|
||||||
t = 42;
|
|
||||||
}
|
|
||||||
console.log(t);
|
|
||||||
}
|
|
||||||
f(f);
|
|
||||||
f();
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
function f(a) {
|
|
||||||
var t;
|
|
||||||
t = a ? (t = "foo", "bar") : (console.log(t), 42),
|
|
||||||
console.log(t);
|
|
||||||
}
|
|
||||||
f(f),
|
|
||||||
f();
|
|
||||||
}
|
|
||||||
expect_stdout: [
|
|
||||||
"bar",
|
|
||||||
"undefined",
|
|
||||||
"42",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
cond_seq_assign_2: {
|
|
||||||
options = {
|
|
||||||
conditionals: true,
|
|
||||||
sequences: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function f(a) {
|
|
||||||
var t;
|
|
||||||
if (a) {
|
|
||||||
t = "foo";
|
|
||||||
a = "bar";
|
|
||||||
} else {
|
|
||||||
console.log(t);
|
|
||||||
t = 42;
|
|
||||||
}
|
|
||||||
console.log(t);
|
|
||||||
}
|
|
||||||
f(f);
|
|
||||||
f();
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
function f(a) {
|
|
||||||
var t;
|
|
||||||
a ? (t = "foo", a = "bar") : (console.log(t), t = 42),
|
|
||||||
console.log(t);
|
|
||||||
}
|
|
||||||
f(f),
|
|
||||||
f();
|
|
||||||
}
|
|
||||||
expect_stdout: [
|
|
||||||
"foo",
|
|
||||||
"undefined",
|
|
||||||
"42",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
cond_seq_assign_3: {
|
|
||||||
options = {
|
|
||||||
assignments: true,
|
|
||||||
conditionals: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var c = 0;
|
|
||||||
if (this)
|
|
||||||
c = 1 + c, c = c + 1;
|
|
||||||
else
|
|
||||||
c = 1 + c, c = c + 1;
|
|
||||||
console.log(c);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var c = 0;
|
|
||||||
this, c = 1 + c, c += 1;
|
|
||||||
console.log(c);
|
|
||||||
}
|
|
||||||
expect_stdout: "2"
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3271: {
|
|
||||||
options = {
|
|
||||||
conditionals: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function f(a) {
|
|
||||||
var i = 0, b = [];
|
|
||||||
if (a) {
|
|
||||||
b[i++] = 4,
|
|
||||||
b[i++] = 1;
|
|
||||||
} else {
|
|
||||||
b[i++] = 3,
|
|
||||||
b[i++] = 2,
|
|
||||||
b[i++] = 1;
|
|
||||||
}
|
|
||||||
return b;
|
|
||||||
}
|
|
||||||
console.log(f(0).pop(), f(1).pop());
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
function f(a) {
|
|
||||||
var i = 0, b = [];
|
|
||||||
a ? b[i++] = 4 : (b[i++] = 3, b[i++] = 2),
|
|
||||||
b[i++] = 1;
|
|
||||||
return b;
|
|
||||||
}
|
|
||||||
console.log(f(0).pop(), f(1).pop());
|
|
||||||
}
|
|
||||||
expect_stdout: "1 1"
|
|
||||||
}
|
|
||||||
|
|
||||||
iife_condition: {
|
|
||||||
options = {
|
|
||||||
conditionals: true,
|
|
||||||
side_effects: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
if (function() {
|
|
||||||
return console;
|
|
||||||
}())
|
|
||||||
console.log("PASS");
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
!function() {
|
|
||||||
return console;
|
|
||||||
}() || console.log("PASS");
|
|
||||||
}
|
|
||||||
expect_stdout: "PASS"
|
|
||||||
}
|
|
||||||
|
|
||||||
angularjs_chain: {
|
|
||||||
options = {
|
|
||||||
conditionals: true,
|
|
||||||
passes: 2,
|
|
||||||
side_effects: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function nonComputedMember(left, right, context, create) {
|
|
||||||
var lhs = left();
|
|
||||||
if (create && create !== 1) {
|
|
||||||
if (lhs && lhs[right] == null) {
|
|
||||||
lhs[right] = {};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
var value = lhs != null ? lhs[right] : undefined;
|
|
||||||
if (context) {
|
|
||||||
return { context: lhs, name: right, value: value };
|
|
||||||
} else {
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
function nonComputedMember(left, right, context, create) {
|
|
||||||
var lhs = left();
|
|
||||||
create && 1 !== create && lhs && null == lhs[right] && (lhs[right] = {});
|
|
||||||
var value = null != lhs ? lhs[right] : void 0;
|
|
||||||
return context ? {
|
|
||||||
context: lhs,
|
|
||||||
name: right,
|
|
||||||
value: value
|
|
||||||
} : value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3576: {
|
|
||||||
options = {
|
|
||||||
conditionals: true,
|
|
||||||
evaluate: true,
|
|
||||||
pure_getters: "strict",
|
|
||||||
reduce_vars: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var c = "FAIL";
|
|
||||||
(function(a) {
|
|
||||||
(a = -1) ? (a && (a.a = 0)) : (a && (a.a = 0));
|
|
||||||
a && a[c = "PASS"]++;
|
|
||||||
})();
|
|
||||||
console.log(c);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var c = "FAIL";
|
|
||||||
(function(a) {
|
|
||||||
a = -1, a, a.a = 0;
|
|
||||||
a, a[c = "PASS"]++;
|
|
||||||
})();
|
|
||||||
console.log(c);
|
|
||||||
}
|
|
||||||
expect_stdout: "PASS"
|
|
||||||
}
|
|
||||||
|
|||||||
166
test/compress/const.js
Normal file
166
test/compress/const.js
Normal file
@@ -0,0 +1,166 @@
|
|||||||
|
issue_1191: {
|
||||||
|
options = {
|
||||||
|
evaluate : true,
|
||||||
|
booleans : true,
|
||||||
|
comparisons : true,
|
||||||
|
dead_code : true,
|
||||||
|
conditionals : true,
|
||||||
|
side_effects : true,
|
||||||
|
unused : true,
|
||||||
|
hoist_funs : true,
|
||||||
|
if_return : true,
|
||||||
|
join_vars : true,
|
||||||
|
sequences : false,
|
||||||
|
collapse_vars : false,
|
||||||
|
reduce_vars : true,
|
||||||
|
}
|
||||||
|
input: {
|
||||||
|
function foo(rot) {
|
||||||
|
const rotTol = 5;
|
||||||
|
if (rot < -rotTol || rot > rotTol)
|
||||||
|
bar();
|
||||||
|
baz();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
expect: {
|
||||||
|
function foo(rot) {
|
||||||
|
(rot < -5 || rot > 5) && bar();
|
||||||
|
baz();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
issue_1194: {
|
||||||
|
options = {
|
||||||
|
evaluate : true,
|
||||||
|
booleans : true,
|
||||||
|
comparisons : true,
|
||||||
|
dead_code : true,
|
||||||
|
conditionals : true,
|
||||||
|
side_effects : true,
|
||||||
|
unused : true,
|
||||||
|
hoist_funs : true,
|
||||||
|
if_return : true,
|
||||||
|
join_vars : true,
|
||||||
|
sequences : false,
|
||||||
|
collapse_vars : false,
|
||||||
|
reduce_vars : true,
|
||||||
|
}
|
||||||
|
input: {
|
||||||
|
function f1() {const a = "X"; return a + a;}
|
||||||
|
function f2() {const aa = "X"; return aa + aa;}
|
||||||
|
function f3() {const aaa = "X"; return aaa + aaa;}
|
||||||
|
}
|
||||||
|
expect: {
|
||||||
|
function f1(){return"XX"}
|
||||||
|
function f2(){return"XX"}
|
||||||
|
function f3(){return"XX"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
issue_1396: {
|
||||||
|
options = {
|
||||||
|
evaluate : true,
|
||||||
|
booleans : true,
|
||||||
|
comparisons : true,
|
||||||
|
dead_code : true,
|
||||||
|
conditionals : true,
|
||||||
|
side_effects : true,
|
||||||
|
unused : true,
|
||||||
|
hoist_funs : true,
|
||||||
|
if_return : true,
|
||||||
|
join_vars : true,
|
||||||
|
sequences : false,
|
||||||
|
collapse_vars : false,
|
||||||
|
reduce_vars : true,
|
||||||
|
}
|
||||||
|
input: {
|
||||||
|
function foo(a) {
|
||||||
|
const VALUE = 1;
|
||||||
|
console.log(2 | VALUE);
|
||||||
|
console.log(VALUE + 1);
|
||||||
|
console.log(VALUE);
|
||||||
|
console.log(a & VALUE);
|
||||||
|
}
|
||||||
|
function bar() {
|
||||||
|
const s = "01234567890123456789";
|
||||||
|
console.log(s + s + s + s + s);
|
||||||
|
|
||||||
|
const CONSTANT = "abc";
|
||||||
|
console.log(CONSTANT + CONSTANT + CONSTANT + CONSTANT + CONSTANT);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
expect: {
|
||||||
|
function foo(a) {
|
||||||
|
console.log(3);
|
||||||
|
console.log(2);
|
||||||
|
console.log(1);
|
||||||
|
console.log(1 & a);
|
||||||
|
}
|
||||||
|
function bar() {
|
||||||
|
const s = "01234567890123456789";
|
||||||
|
console.log(s + s + s + s + s);
|
||||||
|
|
||||||
|
console.log("abcabcabcabcabc");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
unused_regexp_literal: {
|
||||||
|
options = {
|
||||||
|
evaluate : true,
|
||||||
|
booleans : true,
|
||||||
|
comparisons : true,
|
||||||
|
dead_code : true,
|
||||||
|
conditionals : true,
|
||||||
|
side_effects : true,
|
||||||
|
unused : true,
|
||||||
|
hoist_funs : true,
|
||||||
|
if_return : true,
|
||||||
|
join_vars : true,
|
||||||
|
sequences : false,
|
||||||
|
collapse_vars : false,
|
||||||
|
}
|
||||||
|
input: {
|
||||||
|
function f(){ var a = /b/; }
|
||||||
|
}
|
||||||
|
expect: {
|
||||||
|
function f(){}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
regexp_literal_not_const: {
|
||||||
|
options = {
|
||||||
|
evaluate : true,
|
||||||
|
booleans : true,
|
||||||
|
comparisons : true,
|
||||||
|
dead_code : true,
|
||||||
|
conditionals : true,
|
||||||
|
side_effects : true,
|
||||||
|
unused : true,
|
||||||
|
hoist_funs : true,
|
||||||
|
if_return : true,
|
||||||
|
join_vars : true,
|
||||||
|
sequences : false,
|
||||||
|
collapse_vars : false,
|
||||||
|
reduce_vars : true,
|
||||||
|
}
|
||||||
|
input: {
|
||||||
|
(function(){
|
||||||
|
var result;
|
||||||
|
const s = 'acdabcdeabbb';
|
||||||
|
const REGEXP_LITERAL = /ab*/g;
|
||||||
|
while (result = REGEXP_LITERAL.exec(s)) {
|
||||||
|
console.log(result[0]);
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
}
|
||||||
|
expect: {
|
||||||
|
(function() {
|
||||||
|
var result;
|
||||||
|
const REGEXP_LITERAL = /ab*/g;
|
||||||
|
while (result = REGEXP_LITERAL.exec("acdabcdeabbb")) console.log(result[0]);
|
||||||
|
})();
|
||||||
|
}
|
||||||
|
expect_stdout: true
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,7 @@
|
|||||||
keep_debugger: {
|
keep_debugger: {
|
||||||
options = {
|
options = {
|
||||||
drop_debugger: false,
|
drop_debugger: false
|
||||||
}
|
};
|
||||||
input: {
|
input: {
|
||||||
debugger;
|
debugger;
|
||||||
}
|
}
|
||||||
@@ -12,8 +12,8 @@ keep_debugger: {
|
|||||||
|
|
||||||
drop_debugger: {
|
drop_debugger: {
|
||||||
options = {
|
options = {
|
||||||
drop_debugger: true,
|
drop_debugger: true
|
||||||
}
|
};
|
||||||
input: {
|
input: {
|
||||||
debugger;
|
debugger;
|
||||||
if (foo) debugger;
|
if (foo) debugger;
|
||||||
|
|||||||
@@ -1,95 +0,0 @@
|
|||||||
simple_statement_is_not_a_directive: {
|
|
||||||
input: {
|
|
||||||
"use strict"
|
|
||||||
.split(" ")
|
|
||||||
.forEach(function(s) {
|
|
||||||
console.log(s);
|
|
||||||
});
|
|
||||||
console.log(!this); // is strict mode?
|
|
||||||
(function() {
|
|
||||||
"directive"
|
|
||||||
""
|
|
||||||
"use strict"
|
|
||||||
"hello world"
|
|
||||||
.split(" ")
|
|
||||||
.forEach(function(s) {
|
|
||||||
console.log(s);
|
|
||||||
});
|
|
||||||
console.log(!this); // is strict mode?
|
|
||||||
})();
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
"use strict".split(" ").forEach(function(s) {
|
|
||||||
console.log(s);
|
|
||||||
});
|
|
||||||
console.log(!this);
|
|
||||||
(function() {
|
|
||||||
"directive";
|
|
||||||
"";
|
|
||||||
"use strict";
|
|
||||||
"hello world".split(" ").forEach(function(s) {
|
|
||||||
console.log(s);
|
|
||||||
});
|
|
||||||
console.log(!this);
|
|
||||||
})();
|
|
||||||
}
|
|
||||||
expect_stdout: [
|
|
||||||
"use",
|
|
||||||
"strict",
|
|
||||||
"false",
|
|
||||||
"hello",
|
|
||||||
"world",
|
|
||||||
"true",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
drop_lone_use_strict: {
|
|
||||||
options = {
|
|
||||||
directives: true,
|
|
||||||
side_effects: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function f1() {
|
|
||||||
"use strict";
|
|
||||||
}
|
|
||||||
function f2() {
|
|
||||||
"use strict";
|
|
||||||
function f3() {
|
|
||||||
"use strict";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
(function f4() {
|
|
||||||
"use strict";
|
|
||||||
})();
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
function f1() {
|
|
||||||
}
|
|
||||||
function f2() {
|
|
||||||
"use strict";
|
|
||||||
function f3() {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3166: {
|
|
||||||
options = {
|
|
||||||
directives: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
"foo";
|
|
||||||
"use strict";
|
|
||||||
function f() {
|
|
||||||
"use strict";
|
|
||||||
"bar";
|
|
||||||
"use asm";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
"use strict";
|
|
||||||
function f() {
|
|
||||||
"use asm";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
drop_console_1: {
|
drop_console_1: {
|
||||||
options = {}
|
options = {};
|
||||||
input: {
|
input: {
|
||||||
console.log('foo');
|
console.log('foo');
|
||||||
console.log.apply(console, arguments);
|
console.log.apply(console, arguments);
|
||||||
@@ -11,9 +11,7 @@ drop_console_1: {
|
|||||||
}
|
}
|
||||||
|
|
||||||
drop_console_2: {
|
drop_console_2: {
|
||||||
options = {
|
options = { drop_console: true };
|
||||||
drop_console: true,
|
|
||||||
}
|
|
||||||
input: {
|
input: {
|
||||||
console.log('foo');
|
console.log('foo');
|
||||||
console.log.apply(console, arguments);
|
console.log.apply(console, arguments);
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -2,7 +2,7 @@ must_replace: {
|
|||||||
options = {
|
options = {
|
||||||
global_defs: {
|
global_defs: {
|
||||||
D: "foo bar",
|
D: "foo bar",
|
||||||
},
|
}
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
console.log(D);
|
console.log(D);
|
||||||
@@ -37,7 +37,6 @@ object: {
|
|||||||
VALUE: 42,
|
VALUE: 42,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
side_effects: true,
|
|
||||||
unsafe: true,
|
unsafe: true,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
@@ -121,7 +120,7 @@ mixed: {
|
|||||||
properties: true,
|
properties: true,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
var FOO = { BAR: 0 };
|
const FOO = { BAR: 0 };
|
||||||
console.log(FOO.BAR);
|
console.log(FOO.BAR);
|
||||||
console.log(++CONFIG.DEBUG);
|
console.log(++CONFIG.DEBUG);
|
||||||
console.log(++CONFIG.VALUE);
|
console.log(++CONFIG.VALUE);
|
||||||
@@ -131,7 +130,7 @@ mixed: {
|
|||||||
console.log(CONFIG);
|
console.log(CONFIG);
|
||||||
}
|
}
|
||||||
expect: {
|
expect: {
|
||||||
var FOO = { BAR: 0 };
|
const FOO = { BAR: 0 };
|
||||||
console.log("moo");
|
console.log("moo");
|
||||||
console.log(++CONFIG.DEBUG);
|
console.log(++CONFIG.DEBUG);
|
||||||
console.log(++CONFIG.VALUE);
|
console.log(++CONFIG.VALUE);
|
||||||
@@ -141,8 +140,9 @@ mixed: {
|
|||||||
console.log(CONFIG);
|
console.log(CONFIG);
|
||||||
}
|
}
|
||||||
expect_warnings: [
|
expect_warnings: [
|
||||||
"WARN: global_defs CONFIG.VALUE redefined [test/compress/global_defs.js:4,22]",
|
'WARN: global_defs CONFIG.VALUE redefined [test/compress/global_defs.js:126,22]',
|
||||||
"WARN: global_defs CONFIG.VALUE redefined [test/compress/global_defs.js:7,8]",
|
'WARN: global_defs CONFIG.VALUE redefined [test/compress/global_defs.js:127,22]',
|
||||||
|
'WARN: global_defs CONFIG.VALUE redefined [test/compress/global_defs.js:129,8]',
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -160,59 +160,3 @@ issue_1801: {
|
|||||||
console.log(!0);
|
console.log(!0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
issue_1986: {
|
|
||||||
options = {
|
|
||||||
global_defs: {
|
|
||||||
"@alert": "console.log",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
alert(42);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
console.log(42);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_2167: {
|
|
||||||
options = {
|
|
||||||
conditionals: true,
|
|
||||||
dead_code: true,
|
|
||||||
evaluate: true,
|
|
||||||
global_defs: {
|
|
||||||
"@isDevMode": "function(){}",
|
|
||||||
},
|
|
||||||
passes: 2,
|
|
||||||
side_effects: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
if (isDevMode()) {
|
|
||||||
greetOverlord();
|
|
||||||
}
|
|
||||||
doWork();
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
doWork();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3217: {
|
|
||||||
options = {
|
|
||||||
collapse_vars: true,
|
|
||||||
global_defs: {
|
|
||||||
"@o": "{fn:function(){var a=42;console.log(a)}}",
|
|
||||||
},
|
|
||||||
inline: true,
|
|
||||||
properties: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
side_effects: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
o.fn();
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
console.log(42);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,916 +0,0 @@
|
|||||||
issue_2377_1: {
|
|
||||||
options = {
|
|
||||||
evaluate: true,
|
|
||||||
hoist_props: true,
|
|
||||||
inline: true,
|
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
toplevel: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var obj = {
|
|
||||||
foo: 1,
|
|
||||||
bar: 2,
|
|
||||||
square: function(x) {
|
|
||||||
return x * x;
|
|
||||||
},
|
|
||||||
cube: function(x) {
|
|
||||||
return x * x * x;
|
|
||||||
},
|
|
||||||
};
|
|
||||||
console.log(obj.foo, obj.cube(3));
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var obj_foo = 1, obj_cube = function(x) {
|
|
||||||
return x * x * x;
|
|
||||||
};
|
|
||||||
console.log(obj_foo, obj_cube(3));
|
|
||||||
}
|
|
||||||
expect_stdout: "1 27"
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_2377_2: {
|
|
||||||
options = {
|
|
||||||
evaluate: true,
|
|
||||||
hoist_props: true,
|
|
||||||
inline: true,
|
|
||||||
passes: 2,
|
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
toplevel: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var obj = {
|
|
||||||
foo: 1,
|
|
||||||
bar: 2,
|
|
||||||
square: function(x) {
|
|
||||||
return x * x;
|
|
||||||
},
|
|
||||||
cube: function(x) {
|
|
||||||
return x * x * x;
|
|
||||||
},
|
|
||||||
};
|
|
||||||
console.log(obj.foo, obj.cube(3));
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
console.log(1, (x = 3, x * x * x));
|
|
||||||
var x;
|
|
||||||
}
|
|
||||||
expect_stdout: "1 27"
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_2377_3: {
|
|
||||||
options = {
|
|
||||||
evaluate: true,
|
|
||||||
hoist_props: true,
|
|
||||||
inline: true,
|
|
||||||
passes: 4,
|
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
side_effects: true,
|
|
||||||
toplevel: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var obj = {
|
|
||||||
foo: 1,
|
|
||||||
bar: 2,
|
|
||||||
square: function(x) {
|
|
||||||
return x * x;
|
|
||||||
},
|
|
||||||
cube: function(x) {
|
|
||||||
return x * x * x;
|
|
||||||
},
|
|
||||||
};
|
|
||||||
console.log(obj.foo, obj.cube(3));
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
console.log(1, 27);
|
|
||||||
}
|
|
||||||
expect_stdout: "1 27"
|
|
||||||
}
|
|
||||||
|
|
||||||
direct_access_1: {
|
|
||||||
options = {
|
|
||||||
hoist_props: true,
|
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
toplevel: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var a = 0;
|
|
||||||
var obj = {
|
|
||||||
a: 1,
|
|
||||||
b: 2,
|
|
||||||
};
|
|
||||||
for (var k in obj) a++;
|
|
||||||
console.log(a, obj.a);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var a = 0;
|
|
||||||
var obj = {
|
|
||||||
a: 1,
|
|
||||||
b: 2,
|
|
||||||
};
|
|
||||||
for (var k in obj) a++;
|
|
||||||
console.log(a, obj.a);
|
|
||||||
}
|
|
||||||
expect_stdout: "2 1"
|
|
||||||
}
|
|
||||||
|
|
||||||
direct_access_2: {
|
|
||||||
options = {
|
|
||||||
hoist_props: true,
|
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
toplevel: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var o = { a: 1 };
|
|
||||||
var f = function(k) {
|
|
||||||
if (o[k]) return "PASS";
|
|
||||||
};
|
|
||||||
console.log(f("a"));
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var o = { a: 1 };
|
|
||||||
console.log(function(k) {
|
|
||||||
if (o[k]) return "PASS";
|
|
||||||
}("a"));
|
|
||||||
}
|
|
||||||
expect_stdout: "PASS"
|
|
||||||
}
|
|
||||||
|
|
||||||
direct_access_3: {
|
|
||||||
options = {
|
|
||||||
hoist_props: true,
|
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
toplevel: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var o = { a: 1 };
|
|
||||||
o.b;
|
|
||||||
console.log(o.a);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var o = { a: 1 };
|
|
||||||
o.b;
|
|
||||||
console.log(o.a);
|
|
||||||
}
|
|
||||||
expect_stdout: "1"
|
|
||||||
}
|
|
||||||
|
|
||||||
single_use: {
|
|
||||||
options = {
|
|
||||||
hoist_props: true,
|
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
toplevel: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var obj = {
|
|
||||||
bar: function() {
|
|
||||||
return 42;
|
|
||||||
},
|
|
||||||
};
|
|
||||||
console.log(obj.bar());
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
console.log({
|
|
||||||
bar: function() {
|
|
||||||
return 42;
|
|
||||||
},
|
|
||||||
}.bar());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
name_collision_1: {
|
|
||||||
options = {
|
|
||||||
hoist_props: true,
|
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
toplevel: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var obj_foo = 1;
|
|
||||||
var obj_bar = 2;
|
|
||||||
function f() {
|
|
||||||
var obj = {
|
|
||||||
foo: 3,
|
|
||||||
bar: 4,
|
|
||||||
"b-r": 5,
|
|
||||||
"b+r": 6,
|
|
||||||
"b!r": 7,
|
|
||||||
};
|
|
||||||
console.log(obj_foo, obj.foo, obj.bar, obj["b-r"], obj["b+r"], obj["b!r"]);
|
|
||||||
}
|
|
||||||
f();
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var obj_foo = 1;
|
|
||||||
var obj_bar = 2;
|
|
||||||
function f() {
|
|
||||||
var obj_foo$0 = 3,
|
|
||||||
obj_bar = 4,
|
|
||||||
obj_b_r = 5,
|
|
||||||
obj_b_r$0 = 6,
|
|
||||||
obj_b_r$1 = 7;
|
|
||||||
console.log(obj_foo, obj_foo$0, obj_bar, obj_b_r, obj_b_r$0, obj_b_r$1);
|
|
||||||
}
|
|
||||||
f();
|
|
||||||
}
|
|
||||||
expect_stdout: "1 3 4 5 6 7"
|
|
||||||
}
|
|
||||||
|
|
||||||
name_collision_2: {
|
|
||||||
options = {
|
|
||||||
hoist_props: true,
|
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
toplevel: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var o = {
|
|
||||||
p: 1,
|
|
||||||
"+": function(x) {
|
|
||||||
return x;
|
|
||||||
},
|
|
||||||
"-": function(x) {
|
|
||||||
return x + 1;
|
|
||||||
}
|
|
||||||
}, o__$0 = 2, o__$1 = 3;
|
|
||||||
console.log(o.p === o.p, o["+"](4), o["-"](5), o__$0, o__$1);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var o_p = 1,
|
|
||||||
o__ = function(x) {
|
|
||||||
return x;
|
|
||||||
},
|
|
||||||
o__$2 = function(x) {
|
|
||||||
return x + 1;
|
|
||||||
},
|
|
||||||
o__$0 = 2,
|
|
||||||
o__$1 = 3;
|
|
||||||
console.log(o_p === o_p, o__(4), o__$2(5), o__$0, o__$1);
|
|
||||||
}
|
|
||||||
expect_stdout: "true 4 6 2 3"
|
|
||||||
}
|
|
||||||
|
|
||||||
name_collision_3: {
|
|
||||||
options = {
|
|
||||||
hoist_props: true,
|
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
toplevel: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var o = {
|
|
||||||
p: 1,
|
|
||||||
"+": function(x) {
|
|
||||||
return x;
|
|
||||||
},
|
|
||||||
"-": function(x) {
|
|
||||||
return x + 1;
|
|
||||||
}
|
|
||||||
}, o__$0 = 2, o__$1 = 3;
|
|
||||||
console.log(o.p === o.p, o["+"](4), o["-"](5));
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var o_p = 1,
|
|
||||||
o__ = function(x) {
|
|
||||||
return x;
|
|
||||||
},
|
|
||||||
o__$2 = function(x) {
|
|
||||||
return x + 1;
|
|
||||||
},
|
|
||||||
o__$0 = 2,
|
|
||||||
o__$1 = 3;
|
|
||||||
console.log(o_p === o_p, o__(4), o__$2(5));
|
|
||||||
}
|
|
||||||
expect_stdout: "true 4 6"
|
|
||||||
}
|
|
||||||
|
|
||||||
contains_this_1: {
|
|
||||||
options = {
|
|
||||||
evaluate: true,
|
|
||||||
hoist_props: true,
|
|
||||||
inline: true,
|
|
||||||
passes: 2,
|
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
toplevel: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var o = {
|
|
||||||
u: function() {
|
|
||||||
return this === this;
|
|
||||||
},
|
|
||||||
p: 1
|
|
||||||
};
|
|
||||||
console.log(o.p, o.p);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
console.log(1, 1);
|
|
||||||
}
|
|
||||||
expect_stdout: "1 1"
|
|
||||||
}
|
|
||||||
|
|
||||||
contains_this_2: {
|
|
||||||
options = {
|
|
||||||
evaluate: true,
|
|
||||||
hoist_props: true,
|
|
||||||
inline: true,
|
|
||||||
passes: 2,
|
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
toplevel: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var o = {
|
|
||||||
u: function() {
|
|
||||||
return this === this;
|
|
||||||
},
|
|
||||||
p: 1
|
|
||||||
};
|
|
||||||
console.log(o.p, o.p, o.u);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
console.log(1, 1, function() {
|
|
||||||
return this === this;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
expect_stdout: true
|
|
||||||
}
|
|
||||||
|
|
||||||
contains_this_3: {
|
|
||||||
options = {
|
|
||||||
evaluate: true,
|
|
||||||
hoist_props: true,
|
|
||||||
inline: true,
|
|
||||||
passes: 2,
|
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
toplevel: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var o = {
|
|
||||||
u: function() {
|
|
||||||
return this === this;
|
|
||||||
},
|
|
||||||
p: 1
|
|
||||||
};
|
|
||||||
console.log(o.p, o.p, o.u());
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var o = {
|
|
||||||
u: function() {
|
|
||||||
return this === this;
|
|
||||||
},
|
|
||||||
p: 1
|
|
||||||
};
|
|
||||||
console.log(o.p, o.p, o.u());
|
|
||||||
}
|
|
||||||
expect_stdout: "1 1 true"
|
|
||||||
}
|
|
||||||
|
|
||||||
new_this: {
|
|
||||||
options = {
|
|
||||||
evaluate: true,
|
|
||||||
hoist_props: true,
|
|
||||||
inline: true,
|
|
||||||
passes: 2,
|
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
toplevel: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var o = {
|
|
||||||
a: 1,
|
|
||||||
b: 2,
|
|
||||||
f: function(a) {
|
|
||||||
this.b = a;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
console.log(new o.f(o.a).b, o.b);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
console.log(new function(a) {
|
|
||||||
this.b = a;
|
|
||||||
}(1).b, 2);
|
|
||||||
}
|
|
||||||
expect_stdout: "1 2"
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_2473_1: {
|
|
||||||
options = {
|
|
||||||
hoist_props: false,
|
|
||||||
reduce_vars: true,
|
|
||||||
top_retain: [
|
|
||||||
"x",
|
|
||||||
"y"
|
|
||||||
],
|
|
||||||
toplevel: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var x = {};
|
|
||||||
var y = [];
|
|
||||||
var z = {};
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var x = {};
|
|
||||||
var y = [];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_2473_2: {
|
|
||||||
options = {
|
|
||||||
hoist_props: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
top_retain: [
|
|
||||||
"x",
|
|
||||||
"y"
|
|
||||||
],
|
|
||||||
toplevel: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var x = {};
|
|
||||||
var y = [];
|
|
||||||
var z = {};
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var x = {};
|
|
||||||
var y = [];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_2473_3: {
|
|
||||||
options = {
|
|
||||||
hoist_props: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
top_retain: "o",
|
|
||||||
toplevel: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var o = {
|
|
||||||
a: 1,
|
|
||||||
b: 2,
|
|
||||||
};
|
|
||||||
console.log(o.a, o.b);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var o = {
|
|
||||||
a: 1,
|
|
||||||
b: 2,
|
|
||||||
};
|
|
||||||
console.log(o.a, o.b);
|
|
||||||
}
|
|
||||||
expect_stdout: "1 2"
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_2473_4: {
|
|
||||||
options = {
|
|
||||||
hoist_props: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
top_retain: "o",
|
|
||||||
toplevel: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
(function() {
|
|
||||||
var o = {
|
|
||||||
a: 1,
|
|
||||||
b: 2,
|
|
||||||
};
|
|
||||||
console.log(o.a, o.b);
|
|
||||||
})();
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
(function() {
|
|
||||||
var o_a = 1, o_b = 2;
|
|
||||||
console.log(o_a, o_b);
|
|
||||||
})();
|
|
||||||
}
|
|
||||||
expect_stdout: "1 2"
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_2508_1: {
|
|
||||||
options = {
|
|
||||||
collapse_vars: true,
|
|
||||||
hoist_props: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
toplevel: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var o = {
|
|
||||||
a: [ 1 ],
|
|
||||||
f: function(x) {
|
|
||||||
console.log(x);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
o.f(o.a);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
(function(x) {
|
|
||||||
console.log(x);
|
|
||||||
})([ 1 ]);
|
|
||||||
}
|
|
||||||
expect_stdout: true
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_2508_2: {
|
|
||||||
options = {
|
|
||||||
collapse_vars: true,
|
|
||||||
hoist_props: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
toplevel: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var o = {
|
|
||||||
a: { b: 2 },
|
|
||||||
f: function(x) {
|
|
||||||
console.log(x);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
o.f(o.a);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
(function(x) {
|
|
||||||
console.log(x);
|
|
||||||
})({ b: 2 });
|
|
||||||
}
|
|
||||||
expect_stdout: true
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_2508_3: {
|
|
||||||
options = {
|
|
||||||
collapse_vars: true,
|
|
||||||
hoist_props: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
toplevel: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var o = {
|
|
||||||
a: [ o ],
|
|
||||||
f: function(x) {
|
|
||||||
console.log(x);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
o.f(o.a);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var o = {
|
|
||||||
a: [ o ],
|
|
||||||
f: function(x) {
|
|
||||||
console.log(x);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
o.f(o.a);
|
|
||||||
}
|
|
||||||
expect_stdout: true
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_2508_4: {
|
|
||||||
options = {
|
|
||||||
collapse_vars: true,
|
|
||||||
hoist_props: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
toplevel: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var o = {
|
|
||||||
a: { b: o },
|
|
||||||
f: function(x) {
|
|
||||||
console.log(x);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
o.f(o.a);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var o = {
|
|
||||||
a: { b: o },
|
|
||||||
f: function(x) {
|
|
||||||
console.log(x);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
o.f(o.a);
|
|
||||||
}
|
|
||||||
expect_stdout: true
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_2508_5: {
|
|
||||||
options = {
|
|
||||||
collapse_vars: true,
|
|
||||||
hoist_props: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
toplevel: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var o = {
|
|
||||||
f: function(x) {
|
|
||||||
console.log(x);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
o.f(o.f);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var o_f = function(x) {
|
|
||||||
console.log(x);
|
|
||||||
};
|
|
||||||
o_f(o_f);
|
|
||||||
}
|
|
||||||
expect_stdout: true
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_2519: {
|
|
||||||
options = {
|
|
||||||
collapse_vars: true,
|
|
||||||
evaluate: true,
|
|
||||||
hoist_props: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function testFunc() {
|
|
||||||
var dimensions = {
|
|
||||||
minX: 5,
|
|
||||||
maxX: 6,
|
|
||||||
};
|
|
||||||
var scale = 1;
|
|
||||||
var d = {
|
|
||||||
x: (dimensions.maxX + dimensions.minX) / 2,
|
|
||||||
};
|
|
||||||
return d.x * scale;
|
|
||||||
}
|
|
||||||
console.log(testFunc());
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
function testFunc() {
|
|
||||||
return 1 * ((6 + 5) / 2);
|
|
||||||
}
|
|
||||||
console.log(testFunc());
|
|
||||||
}
|
|
||||||
expect_stdout: "5.5"
|
|
||||||
}
|
|
||||||
|
|
||||||
undefined_key: {
|
|
||||||
options = {
|
|
||||||
evaluate: true,
|
|
||||||
hoist_props: true,
|
|
||||||
join_vars: true,
|
|
||||||
passes: 4,
|
|
||||||
reduce_vars: true,
|
|
||||||
toplevel: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var a, o = {};
|
|
||||||
o[a] = 1;
|
|
||||||
o.b = 2;
|
|
||||||
console.log(o[a] + o.b);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
console.log(3);
|
|
||||||
}
|
|
||||||
expect_stdout: "3"
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3021: {
|
|
||||||
options = {
|
|
||||||
hoist_props: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var a = 1, b = 2;
|
|
||||||
(function() {
|
|
||||||
b = a;
|
|
||||||
if (a++ + b--)
|
|
||||||
return 1;
|
|
||||||
return;
|
|
||||||
var b = {};
|
|
||||||
})();
|
|
||||||
console.log(a, b);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var a = 1, b = 2;
|
|
||||||
(function() {
|
|
||||||
b = a;
|
|
||||||
if (a++ + b--)
|
|
||||||
return 1;
|
|
||||||
return;
|
|
||||||
var b = {};
|
|
||||||
})();
|
|
||||||
console.log(a, b);
|
|
||||||
}
|
|
||||||
expect_stdout: "2 2"
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3046: {
|
|
||||||
options = {
|
|
||||||
hoist_props: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
console.log(function(a) {
|
|
||||||
do {
|
|
||||||
var b = {
|
|
||||||
c: a++
|
|
||||||
};
|
|
||||||
} while (b.c && a);
|
|
||||||
return a;
|
|
||||||
}(0));
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
console.log(function(a) {
|
|
||||||
do {
|
|
||||||
var b_c = a++;
|
|
||||||
} while (b_c && a);
|
|
||||||
return a;
|
|
||||||
}(0));
|
|
||||||
}
|
|
||||||
expect_stdout: "1"
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3071_1: {
|
|
||||||
options = {
|
|
||||||
evaluate: true,
|
|
||||||
hoist_props: true,
|
|
||||||
inline: true,
|
|
||||||
join_vars: true,
|
|
||||||
passes: 3,
|
|
||||||
reduce_vars: true,
|
|
||||||
sequences: true,
|
|
||||||
side_effects: true,
|
|
||||||
toplevel: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
(function() {
|
|
||||||
var obj = {};
|
|
||||||
obj.one = 1;
|
|
||||||
obj.two = 2;
|
|
||||||
console.log(obj.one);
|
|
||||||
})();
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
console.log(1);
|
|
||||||
}
|
|
||||||
expect_stdout: "1"
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3071_2: {
|
|
||||||
options = {
|
|
||||||
evaluate: true,
|
|
||||||
hoist_props: true,
|
|
||||||
inline: true,
|
|
||||||
join_vars: true,
|
|
||||||
passes: 3,
|
|
||||||
reduce_vars: true,
|
|
||||||
sequences: true,
|
|
||||||
side_effects: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
(function() {
|
|
||||||
obj = {};
|
|
||||||
obj.one = 1;
|
|
||||||
obj.two = 2;
|
|
||||||
console.log(obj.one);
|
|
||||||
var obj;
|
|
||||||
})();
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
console.log(1);
|
|
||||||
}
|
|
||||||
expect_stdout: "1"
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3071_2_toplevel: {
|
|
||||||
options = {
|
|
||||||
evaluate: true,
|
|
||||||
hoist_props: true,
|
|
||||||
inline: true,
|
|
||||||
join_vars: true,
|
|
||||||
passes: 3,
|
|
||||||
reduce_vars: true,
|
|
||||||
sequences: true,
|
|
||||||
side_effects: true,
|
|
||||||
toplevel: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
(function() {
|
|
||||||
obj = {};
|
|
||||||
obj.one = 1;
|
|
||||||
obj.two = 2;
|
|
||||||
console.log(obj.one);
|
|
||||||
var obj;
|
|
||||||
})();
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
console.log(1);
|
|
||||||
}
|
|
||||||
expect_stdout: "1"
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3071_3: {
|
|
||||||
options = {
|
|
||||||
hoist_props: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var c = 0;
|
|
||||||
(function(a, b) {
|
|
||||||
(function f(o) {
|
|
||||||
var n = 2;
|
|
||||||
while (--b + (o = {
|
|
||||||
p: c++,
|
|
||||||
}) && --n > 0);
|
|
||||||
})();
|
|
||||||
})();
|
|
||||||
console.log(c);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var c = 0;
|
|
||||||
(function(a, b) {
|
|
||||||
(function f(o) {
|
|
||||||
var n = 2;
|
|
||||||
while (--b + (o = {
|
|
||||||
p: c++,
|
|
||||||
}) && --n > 0);
|
|
||||||
})();
|
|
||||||
})();
|
|
||||||
console.log(c);
|
|
||||||
}
|
|
||||||
expect_stdout: "2"
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3411: {
|
|
||||||
options = {
|
|
||||||
hoist_props: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var c = 1;
|
|
||||||
!function f() {
|
|
||||||
var o = {
|
|
||||||
p: --c && f()
|
|
||||||
};
|
|
||||||
+o || console.log("PASS");
|
|
||||||
}();
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var c = 1;
|
|
||||||
!function f() {
|
|
||||||
var o_p = --c && f();
|
|
||||||
+{} || console.log("PASS");
|
|
||||||
}();
|
|
||||||
}
|
|
||||||
expect_stdout: "PASS"
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3440: {
|
|
||||||
options = {
|
|
||||||
hoist_props: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
(function() {
|
|
||||||
function f() {
|
|
||||||
console.log(o.p);
|
|
||||||
}
|
|
||||||
var o = {
|
|
||||||
p: "PASS",
|
|
||||||
};
|
|
||||||
return f;
|
|
||||||
})()();
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
(function() {
|
|
||||||
var o_p = "PASS";
|
|
||||||
return function() {
|
|
||||||
console.log(o_p);
|
|
||||||
};
|
|
||||||
})()();
|
|
||||||
}
|
|
||||||
expect_stdout: "PASS"
|
|
||||||
}
|
|
||||||
@@ -88,24 +88,3 @@ sequences_funs: {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
issue_2295: {
|
|
||||||
options = {
|
|
||||||
collapse_vars: true,
|
|
||||||
hoist_vars: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function foo(o) {
|
|
||||||
var a = o.a;
|
|
||||||
if (a) return a;
|
|
||||||
var a = 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
function foo(o) {
|
|
||||||
var a = o.a;
|
|
||||||
if (a) return a;
|
|
||||||
a = 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,107 +1,55 @@
|
|||||||
html_comment_in_expression: {
|
html_comment_in_expression: {
|
||||||
input: {
|
input: {
|
||||||
(function(a, b) {
|
function f(a, b, x, y) { return a < !--b && x-- > y; }
|
||||||
console.log(a < !--b && a-- > b, a, b);
|
|
||||||
})(1, 2);
|
|
||||||
}
|
}
|
||||||
expect_exact: "(function(a,b){console.log(a<! --b&&a-- >b,a,b)})(1,2);"
|
expect_exact: "function f(a,b,x,y){return a< !--b&&x-- >y}";
|
||||||
expect_stdout: "false 1 1"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
html_comment_in_less_than: {
|
html_comment_in_less_than: {
|
||||||
input: {
|
input: {
|
||||||
(function(a, b, c) {
|
function f(a, b) { return a < !--b; }
|
||||||
console.log(
|
|
||||||
a < !--b,
|
|
||||||
a < !--b + c,
|
|
||||||
a + b < !--c,
|
|
||||||
a, b, c
|
|
||||||
);
|
|
||||||
})(1, 2, 3);
|
|
||||||
}
|
}
|
||||||
expect_exact: "(function(a,b,c){console.log(a<! --b,a<! --b+c,a+b<! --c,a,b,c)})(1,2,3);"
|
expect_exact: "function f(a,b){return a< !--b}";
|
||||||
expect_stdout: "false true false 1 0 2"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
html_comment_in_left_shift: {
|
html_comment_in_left_shift: {
|
||||||
input: {
|
input: {
|
||||||
(function(a, b, c) {
|
function f(a, b) { return a << !--b; }
|
||||||
console.log(
|
|
||||||
a << !--b,
|
|
||||||
a << !--b + c,
|
|
||||||
a + b << !--c,
|
|
||||||
a, b, c
|
|
||||||
);
|
|
||||||
})(1, 2, 3);
|
|
||||||
}
|
}
|
||||||
expect_exact: "(function(a,b,c){console.log(a<<! --b,a<<! --b+c,a+b<<! --c,a,b,c)})(1,2,3);"
|
expect_exact: "function f(a,b){return a<< !--b}";
|
||||||
expect_stdout: "1 16 1 1 0 2"
|
|
||||||
}
|
|
||||||
|
|
||||||
html_comment_in_greater_than: {
|
|
||||||
input: {
|
|
||||||
(function(a, b, c) {
|
|
||||||
console.log(
|
|
||||||
a-- > b,
|
|
||||||
a-- > b + c,
|
|
||||||
a + b-- > c,
|
|
||||||
a, b, c
|
|
||||||
);
|
|
||||||
})(1, 2, 3);
|
|
||||||
}
|
|
||||||
expect_exact: "(function(a,b,c){console.log(a-- >b,a-- >b+c,a+b-- >c,a,b,c)})(1,2,3);"
|
|
||||||
expect_stdout: "false false false -1 1 3"
|
|
||||||
}
|
|
||||||
|
|
||||||
html_comment_in_greater_than_or_equal: {
|
|
||||||
input: {
|
|
||||||
(function(a, b, c) {
|
|
||||||
console.log(
|
|
||||||
a-- >= b,
|
|
||||||
a-- >= b + c,
|
|
||||||
a + b-- >= c,
|
|
||||||
a, b, c
|
|
||||||
);
|
|
||||||
})(1, 2, 3);
|
|
||||||
}
|
|
||||||
expect_exact: "(function(a,b,c){console.log(a-- >=b,a-- >=b+c,a+b-- >=c,a,b,c)})(1,2,3);"
|
|
||||||
expect_stdout: "false false false -1 1 3"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
html_comment_in_right_shift: {
|
html_comment_in_right_shift: {
|
||||||
input: {
|
input: {
|
||||||
(function(a, b, c) {
|
function f(a, b) { return a-- >> b; }
|
||||||
console.log(
|
|
||||||
a-- >> b,
|
|
||||||
a-- >> b + c,
|
|
||||||
a + b-- >> c,
|
|
||||||
a, b, c
|
|
||||||
);
|
|
||||||
})(1, 2, 3);
|
|
||||||
}
|
}
|
||||||
expect_exact: "(function(a,b,c){console.log(a-- >>b,a-- >>b+c,a+b-- >>c,a,b,c)})(1,2,3);"
|
expect_exact: "function f(a,b){return a-- >>b}";
|
||||||
expect_stdout: "0 0 0 -1 1 3"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
html_comment_in_zero_fill_right_shift: {
|
html_comment_in_zero_fill_right_shift: {
|
||||||
input: {
|
input: {
|
||||||
(function(a, b, c) {
|
function f(a, b) { return a-- >>> b; }
|
||||||
console.log(
|
|
||||||
a-- >>> b,
|
|
||||||
a-- >>> b + c,
|
|
||||||
a + b-- >>> c,
|
|
||||||
a, b, c
|
|
||||||
);
|
|
||||||
})(1, 2, 3);
|
|
||||||
}
|
}
|
||||||
expect_exact: "(function(a,b,c){console.log(a-- >>>b,a-- >>>b+c,a+b-- >>>c,a,b,c)})(1,2,3);"
|
expect_exact: "function f(a,b){return a-- >>>b}";
|
||||||
expect_stdout: "0 0 0 -1 1 3"
|
}
|
||||||
|
|
||||||
|
html_comment_in_greater_than: {
|
||||||
|
input: {
|
||||||
|
function f(a, b) { return a-- > b; }
|
||||||
|
}
|
||||||
|
expect_exact: "function f(a,b){return a-- >b}";
|
||||||
|
}
|
||||||
|
|
||||||
|
html_comment_in_greater_than_or_equal: {
|
||||||
|
input: {
|
||||||
|
function f(a, b) { return a-- >= b; }
|
||||||
|
}
|
||||||
|
expect_exact: "function f(a,b){return a-- >=b}";
|
||||||
}
|
}
|
||||||
|
|
||||||
html_comment_in_string_literal: {
|
html_comment_in_string_literal: {
|
||||||
input: {
|
input: {
|
||||||
console.log("<!--HTML-->comment in<!--string literal-->".length);
|
function f() { return "<!--HTML-->comment in<!--string literal-->"; }
|
||||||
}
|
}
|
||||||
expect_exact: 'console.log("\\x3c!--HTML--\\x3ecomment in\\x3c!--string literal--\\x3e".length);'
|
expect_exact: 'function f(){return"\\x3c!--HTML--\\x3ecomment in\\x3c!--string literal--\\x3e"}';
|
||||||
expect_stdout: "42"
|
|
||||||
}
|
}
|
||||||
|
|||||||
2363
test/compress/ie8.js
2363
test/compress/ie8.js
File diff suppressed because it is too large
Load Diff
@@ -1,14 +1,14 @@
|
|||||||
if_return_1: {
|
if_return_1: {
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
if_return : true,
|
||||||
comparisons: true,
|
sequences : true,
|
||||||
conditionals: true,
|
conditionals : true,
|
||||||
dead_code: true,
|
comparisons : true,
|
||||||
evaluate: true,
|
evaluate : true,
|
||||||
if_return: true,
|
booleans : true,
|
||||||
sequences: true,
|
unused : true,
|
||||||
side_effects: true,
|
side_effects : true,
|
||||||
unused: true,
|
dead_code : true,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
function f(x) {
|
function f(x) {
|
||||||
@@ -24,15 +24,15 @@ if_return_1: {
|
|||||||
|
|
||||||
if_return_2: {
|
if_return_2: {
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
if_return : true,
|
||||||
comparisons: true,
|
sequences : true,
|
||||||
conditionals: true,
|
conditionals : true,
|
||||||
dead_code: true,
|
comparisons : true,
|
||||||
evaluate: true,
|
evaluate : true,
|
||||||
if_return: true,
|
booleans : true,
|
||||||
sequences: true,
|
unused : true,
|
||||||
side_effects: true,
|
side_effects : true,
|
||||||
unused: true,
|
dead_code : true,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
function f(x, y) {
|
function f(x, y) {
|
||||||
@@ -49,15 +49,15 @@ if_return_2: {
|
|||||||
|
|
||||||
if_return_3: {
|
if_return_3: {
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
if_return : true,
|
||||||
comparisons: true,
|
sequences : true,
|
||||||
conditionals: true,
|
conditionals : true,
|
||||||
dead_code: true,
|
comparisons : true,
|
||||||
evaluate: true,
|
evaluate : true,
|
||||||
if_return: true,
|
booleans : true,
|
||||||
sequences: true,
|
unused : true,
|
||||||
side_effects: true,
|
side_effects : true,
|
||||||
unused: true,
|
dead_code : true,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
function f(x) {
|
function f(x) {
|
||||||
@@ -75,15 +75,15 @@ if_return_3: {
|
|||||||
|
|
||||||
if_return_4: {
|
if_return_4: {
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
if_return : true,
|
||||||
comparisons: true,
|
sequences : true,
|
||||||
conditionals: true,
|
conditionals : true,
|
||||||
dead_code: true,
|
comparisons : true,
|
||||||
evaluate: true,
|
evaluate : true,
|
||||||
if_return: true,
|
booleans : true,
|
||||||
sequences: true,
|
unused : true,
|
||||||
side_effects: true,
|
side_effects : true,
|
||||||
unused: true,
|
dead_code : true,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
function f(x, y) {
|
function f(x, y) {
|
||||||
@@ -100,15 +100,15 @@ if_return_4: {
|
|||||||
|
|
||||||
if_return_5: {
|
if_return_5: {
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
if_return : true,
|
||||||
comparisons: true,
|
sequences : true,
|
||||||
conditionals: true,
|
conditionals : true,
|
||||||
dead_code: true,
|
comparisons : true,
|
||||||
evaluate: true,
|
evaluate : true,
|
||||||
if_return: true,
|
booleans : true,
|
||||||
sequences: true,
|
unused : true,
|
||||||
side_effects: true,
|
side_effects : true,
|
||||||
unused: true,
|
dead_code : true,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
function f() {
|
function f() {
|
||||||
@@ -126,15 +126,15 @@ if_return_5: {
|
|||||||
|
|
||||||
if_return_6: {
|
if_return_6: {
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
if_return : true,
|
||||||
comparisons: true,
|
sequences : true,
|
||||||
conditionals: true,
|
conditionals : true,
|
||||||
dead_code: true,
|
comparisons : true,
|
||||||
evaluate: true,
|
evaluate : true,
|
||||||
if_return: true,
|
booleans : true,
|
||||||
sequences: true,
|
unused : true,
|
||||||
side_effects: true,
|
side_effects : true,
|
||||||
unused: true,
|
dead_code : true,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
function f(x) {
|
function f(x) {
|
||||||
@@ -150,15 +150,15 @@ if_return_6: {
|
|||||||
|
|
||||||
if_return_7: {
|
if_return_7: {
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
if_return : true,
|
||||||
comparisons: true,
|
sequences : true,
|
||||||
conditionals: true,
|
conditionals : true,
|
||||||
dead_code: true,
|
comparisons : true,
|
||||||
evaluate: true,
|
evaluate : true,
|
||||||
if_return: true,
|
booleans : true,
|
||||||
sequences: true,
|
unused : true,
|
||||||
side_effects: true,
|
side_effects : true,
|
||||||
unused: true,
|
dead_code : true,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
function f(x) {
|
function f(x) {
|
||||||
@@ -176,10 +176,10 @@ if_return_7: {
|
|||||||
|
|
||||||
if_return_8: {
|
if_return_8: {
|
||||||
options = {
|
options = {
|
||||||
conditionals: true,
|
if_return: true,
|
||||||
if_return: true,
|
sequences: true,
|
||||||
sequences: true,
|
conditionals: true,
|
||||||
side_effects: true,
|
side_effects : true,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
function f(e) {
|
function f(e) {
|
||||||
@@ -220,15 +220,15 @@ if_return_8: {
|
|||||||
|
|
||||||
issue_1089: {
|
issue_1089: {
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
if_return : true,
|
||||||
comparisons: true,
|
sequences : true,
|
||||||
conditionals: true,
|
conditionals : true,
|
||||||
dead_code: true,
|
comparisons : true,
|
||||||
evaluate: true,
|
evaluate : true,
|
||||||
if_return: true,
|
booleans : true,
|
||||||
sequences: true,
|
unused : true,
|
||||||
side_effects: true,
|
side_effects : true,
|
||||||
unused: true,
|
dead_code : true,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
function x() {
|
function x() {
|
||||||
@@ -243,7 +243,7 @@ issue_1089: {
|
|||||||
expect: {
|
expect: {
|
||||||
function x() {
|
function x() {
|
||||||
var f = document.getElementById("fname");
|
var f = document.getElementById("fname");
|
||||||
if (12345 < f.files[0].size)
|
if (f.files[0].size > 12345)
|
||||||
return alert("alert"), f.focus(), !1;
|
return alert("alert"), f.focus(), !1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -251,9 +251,9 @@ issue_1089: {
|
|||||||
|
|
||||||
issue_1437: {
|
issue_1437: {
|
||||||
options = {
|
options = {
|
||||||
conditionals: false,
|
if_return : true,
|
||||||
if_return: true,
|
sequences : true,
|
||||||
sequences: true,
|
conditionals : false
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
function x() {
|
function x() {
|
||||||
@@ -281,9 +281,9 @@ issue_1437: {
|
|||||||
|
|
||||||
issue_1437_conditionals: {
|
issue_1437_conditionals: {
|
||||||
options = {
|
options = {
|
||||||
conditionals: true,
|
conditionals : true,
|
||||||
if_return: true,
|
if_return : true,
|
||||||
sequences: true,
|
sequences : true
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
function x() {
|
function x() {
|
||||||
@@ -302,274 +302,3 @@ issue_1437_conditionals: {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
issue_512: {
|
|
||||||
options = {
|
|
||||||
conditionals: true,
|
|
||||||
if_return: true,
|
|
||||||
sequences: true,
|
|
||||||
side_effects: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function a() {
|
|
||||||
if (b()) {
|
|
||||||
c();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
throw e;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
function a() {
|
|
||||||
if (!b()) throw e;
|
|
||||||
c();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if_var_return: {
|
|
||||||
options = {
|
|
||||||
conditionals: true,
|
|
||||||
if_return: true,
|
|
||||||
join_vars: true,
|
|
||||||
sequences: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function f() {
|
|
||||||
var a;
|
|
||||||
return;
|
|
||||||
var b;
|
|
||||||
}
|
|
||||||
function g() {
|
|
||||||
var a;
|
|
||||||
if (u()) {
|
|
||||||
var b;
|
|
||||||
return v();
|
|
||||||
var c;
|
|
||||||
}
|
|
||||||
var d;
|
|
||||||
if (w()) {
|
|
||||||
var e;
|
|
||||||
return x();
|
|
||||||
var f;
|
|
||||||
} else {
|
|
||||||
var g;
|
|
||||||
y();
|
|
||||||
var h;
|
|
||||||
}
|
|
||||||
var i;
|
|
||||||
z();
|
|
||||||
var j;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
function f() {
|
|
||||||
var a, b;
|
|
||||||
}
|
|
||||||
function g() {
|
|
||||||
var a, b, c, d, e, f, g, h, i, j;
|
|
||||||
return u() ? v() : w() ? x() : (y(), z(), void 0);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if_if_return_return: {
|
|
||||||
options = {
|
|
||||||
conditionals: true,
|
|
||||||
if_return: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function f(a, b) {
|
|
||||||
if (a) {
|
|
||||||
if (b)
|
|
||||||
return b;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
g();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
function f(a, b) {
|
|
||||||
if (a)
|
|
||||||
return b || void 0;
|
|
||||||
g();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if_body_return_1: {
|
|
||||||
options = {
|
|
||||||
if_return: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var c = "PASS";
|
|
||||||
function f(a, b) {
|
|
||||||
if (a) {
|
|
||||||
if (b) throw new Error(c);
|
|
||||||
return 42;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
console.log(f(0, 0));
|
|
||||||
console.log(f(0, 1));
|
|
||||||
console.log(f(1, 0));
|
|
||||||
try {
|
|
||||||
f(1, 1);
|
|
||||||
console.log("FAIL");
|
|
||||||
} catch (e) {
|
|
||||||
console.log(e.message);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var c = "PASS";
|
|
||||||
function f(a, b) {
|
|
||||||
if (a) {
|
|
||||||
if (b) throw new Error(c);
|
|
||||||
return 42;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
console.log(f(0, 0));
|
|
||||||
console.log(f(0, 1));
|
|
||||||
console.log(f(1, 0));
|
|
||||||
try {
|
|
||||||
f(1, 1);
|
|
||||||
console.log("FAIL");
|
|
||||||
} catch (e) {
|
|
||||||
console.log(e.message);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
expect_stdout: [
|
|
||||||
"true",
|
|
||||||
"true",
|
|
||||||
"42",
|
|
||||||
"PASS",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
if_body_return_2: {
|
|
||||||
options = {
|
|
||||||
if_return: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var c = "PASS";
|
|
||||||
function f(a, b) {
|
|
||||||
if (0 + a) {
|
|
||||||
if (b) throw new Error(c);
|
|
||||||
return 42;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
console.log(f(0, 0));
|
|
||||||
console.log(f(0, 1));
|
|
||||||
console.log(f(1, 0));
|
|
||||||
try {
|
|
||||||
f(1, 1);
|
|
||||||
console.log("FAIL");
|
|
||||||
} catch (e) {
|
|
||||||
console.log(e.message);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var c = "PASS";
|
|
||||||
function f(a, b) {
|
|
||||||
if (0 + a) {
|
|
||||||
if (b) throw new Error(c);
|
|
||||||
return 42;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
console.log(f(0, 0));
|
|
||||||
console.log(f(0, 1));
|
|
||||||
console.log(f(1, 0));
|
|
||||||
try {
|
|
||||||
f(1, 1);
|
|
||||||
console.log("FAIL");
|
|
||||||
} catch (e) {
|
|
||||||
console.log(e.message);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
expect_stdout: [
|
|
||||||
"true",
|
|
||||||
"true",
|
|
||||||
"42",
|
|
||||||
"PASS",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
if_body_return_3: {
|
|
||||||
options = {
|
|
||||||
if_return: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var c = "PASS";
|
|
||||||
function f(a, b) {
|
|
||||||
if (1 == a) {
|
|
||||||
if (b) throw new Error(c);
|
|
||||||
return 42;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
console.log(f(0, 0));
|
|
||||||
console.log(f(0, 1));
|
|
||||||
console.log(f(1, 0));
|
|
||||||
try {
|
|
||||||
f(1, 1);
|
|
||||||
console.log("FAIL");
|
|
||||||
} catch (e) {
|
|
||||||
console.log(e.message);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var c = "PASS";
|
|
||||||
function f(a, b) {
|
|
||||||
if (1 != a) return true;
|
|
||||||
if (b) throw new Error(c);
|
|
||||||
return 42;
|
|
||||||
}
|
|
||||||
console.log(f(0, 0));
|
|
||||||
console.log(f(0, 1));
|
|
||||||
console.log(f(1, 0));
|
|
||||||
try {
|
|
||||||
f(1, 1);
|
|
||||||
console.log("FAIL");
|
|
||||||
} catch (e) {
|
|
||||||
console.log(e.message);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
expect_stdout: [
|
|
||||||
"true",
|
|
||||||
"true",
|
|
||||||
"42",
|
|
||||||
"PASS",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_3600: {
|
|
||||||
options = {
|
|
||||||
if_return: true,
|
|
||||||
inline: true,
|
|
||||||
side_effects: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var c = 0;
|
|
||||||
(function() {
|
|
||||||
if ([ ][c++]); else return;
|
|
||||||
return void function() {
|
|
||||||
var b = --b, a = c = 42;
|
|
||||||
return c;
|
|
||||||
}();
|
|
||||||
})();
|
|
||||||
console.log(c);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var c = 0;
|
|
||||||
(function() {
|
|
||||||
if ([][c++]) b = --b, c = 42;
|
|
||||||
var b;
|
|
||||||
})();
|
|
||||||
console.log(c);
|
|
||||||
}
|
|
||||||
expect_stdout: "1"
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,17 +1,8 @@
|
|||||||
non_hoisted_function_after_return: {
|
non_hoisted_function_after_return: {
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
hoist_funs: false, dead_code: true, conditionals: true, comparisons: true,
|
||||||
comparisons: true,
|
evaluate: true, booleans: true, loops: true, unused: true, keep_fargs: true,
|
||||||
conditionals: true,
|
if_return: true, join_vars: true, cascade: true, side_effects: true
|
||||||
dead_code: true,
|
|
||||||
evaluate: true,
|
|
||||||
hoist_funs: false,
|
|
||||||
if_return: true,
|
|
||||||
join_vars: true,
|
|
||||||
keep_fargs: true,
|
|
||||||
loops: true,
|
|
||||||
side_effects: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
function foo(x) {
|
function foo(x) {
|
||||||
@@ -36,29 +27,19 @@ non_hoisted_function_after_return: {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
expect_warnings: [
|
expect_warnings: [
|
||||||
"WARN: Dropping unreachable code [test/compress/issue-1034.js:4,16]",
|
'WARN: Dropping unreachable code [test/compress/issue-1034.js:11,16]',
|
||||||
"WARN: Dropping unreachable code [test/compress/issue-1034.js:7,16]",
|
"WARN: Dropping unreachable code [test/compress/issue-1034.js:14,16]",
|
||||||
"WARN: Dropping unreachable code [test/compress/issue-1034.js:10,12]",
|
"WARN: Dropping unreachable code [test/compress/issue-1034.js:17,12]",
|
||||||
"WARN: Dropping unused function UnusedFunction [test/compress/issue-1034.js:11,21]"
|
"WARN: Dropping unused function UnusedFunction [test/compress/issue-1034.js:18,21]"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
non_hoisted_function_after_return_2a: {
|
non_hoisted_function_after_return_2a: {
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
hoist_funs: false, dead_code: true, conditionals: true, comparisons: true,
|
||||||
collapse_vars: false,
|
evaluate: true, booleans: true, loops: true, unused: true, keep_fargs: true,
|
||||||
comparisons: true,
|
if_return: true, join_vars: true, cascade: true, side_effects: true,
|
||||||
conditionals: true,
|
collapse_vars: false, passes: 2, warnings: "verbose"
|
||||||
dead_code: true,
|
|
||||||
evaluate: true,
|
|
||||||
hoist_funs: false,
|
|
||||||
if_return: true,
|
|
||||||
join_vars: true,
|
|
||||||
keep_fargs: true,
|
|
||||||
loops: true,
|
|
||||||
passes: 2,
|
|
||||||
side_effects: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
function foo(x) {
|
function foo(x) {
|
||||||
@@ -84,37 +65,26 @@ non_hoisted_function_after_return_2a: {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
expect_warnings: [
|
expect_warnings: [
|
||||||
"WARN: Dropping unreachable code [test/compress/issue-1034.js:4,16]",
|
"WARN: Dropping unreachable code [test/compress/issue-1034.js:48,16]",
|
||||||
"WARN: Declarations in unreachable code! [test/compress/issue-1034.js:4,16]",
|
"WARN: Declarations in unreachable code! [test/compress/issue-1034.js:48,16]",
|
||||||
"WARN: Dropping unreachable code [test/compress/issue-1034.js:7,16]",
|
"WARN: Dropping unreachable code [test/compress/issue-1034.js:51,16]",
|
||||||
"WARN: Declarations in unreachable code! [test/compress/issue-1034.js:7,16]",
|
"WARN: Declarations in unreachable code! [test/compress/issue-1034.js:51,16]",
|
||||||
"WARN: Dropping unused variable a [test/compress/issue-1034.js:4,20]",
|
"WARN: Dropping unused variable a [test/compress/issue-1034.js:48,20]",
|
||||||
"WARN: Dropping unused function nope [test/compress/issue-1034.js:11,21]",
|
"WARN: Dropping unused function nope [test/compress/issue-1034.js:55,21]",
|
||||||
"INFO: pass 0: last_count: Infinity, count: 37",
|
"WARN: Dropping unreachable code [test/compress/issue-1034.js:53,12]",
|
||||||
"WARN: Dropping unreachable code [test/compress/issue-1034.js:9,12]",
|
"WARN: Declarations in unreachable code! [test/compress/issue-1034.js:53,12]",
|
||||||
"WARN: Declarations in unreachable code! [test/compress/issue-1034.js:9,12]",
|
"WARN: Dropping unreachable code [test/compress/issue-1034.js:56,12]",
|
||||||
"WARN: Dropping unreachable code [test/compress/issue-1034.js:12,12]",
|
"WARN: Dropping unused variable b [test/compress/issue-1034.js:51,20]",
|
||||||
"INFO: Dropping unused variable b [test/compress/issue-1034.js:7,20]",
|
"WARN: Dropping unused variable c [test/compress/issue-1034.js:53,16]",
|
||||||
"INFO: Dropping unused variable c [test/compress/issue-1034.js:9,16]",
|
|
||||||
"INFO: pass 1: last_count: 37, count: 18",
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
non_hoisted_function_after_return_2b: {
|
non_hoisted_function_after_return_2b: {
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
hoist_funs: false, dead_code: true, conditionals: true, comparisons: true,
|
||||||
collapse_vars: false,
|
evaluate: true, booleans: true, loops: true, unused: true, keep_fargs: true,
|
||||||
comparisons: true,
|
if_return: true, join_vars: true, cascade: true, side_effects: true,
|
||||||
conditionals: true,
|
collapse_vars: false
|
||||||
dead_code: true,
|
|
||||||
evaluate: true,
|
|
||||||
hoist_funs: false,
|
|
||||||
if_return: true,
|
|
||||||
join_vars: true,
|
|
||||||
keep_fargs: true,
|
|
||||||
loops: true,
|
|
||||||
side_effects: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
function foo(x) {
|
function foo(x) {
|
||||||
@@ -138,173 +108,11 @@ non_hoisted_function_after_return_2b: {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
expect_warnings: [
|
expect_warnings: [
|
||||||
"WARN: Dropping unreachable code [test/compress/issue-1034.js:6,16]",
|
// duplicate warnings no longer emitted
|
||||||
"WARN: Declarations in unreachable code! [test/compress/issue-1034.js:6,16]",
|
"WARN: Dropping unreachable code [test/compress/issue-1034.js:95,16]",
|
||||||
"WARN: Dropping unreachable code [test/compress/issue-1034.js:8,12]",
|
"WARN: Declarations in unreachable code! [test/compress/issue-1034.js:95,16]",
|
||||||
"WARN: Declarations in unreachable code! [test/compress/issue-1034.js:8,12]",
|
"WARN: Dropping unreachable code [test/compress/issue-1034.js:97,12]",
|
||||||
"WARN: Dropping unreachable code [test/compress/issue-1034.js:12,12]",
|
"WARN: Declarations in unreachable code! [test/compress/issue-1034.js:97,12]",
|
||||||
]
|
"WARN: Dropping unreachable code [test/compress/issue-1034.js:101,12]",
|
||||||
}
|
|
||||||
|
|
||||||
non_hoisted_function_after_return_strict: {
|
|
||||||
options = {
|
|
||||||
booleans: true,
|
|
||||||
comparisons: true,
|
|
||||||
conditionals: true,
|
|
||||||
dead_code: true,
|
|
||||||
evaluate: true,
|
|
||||||
hoist_funs: false,
|
|
||||||
if_return: true,
|
|
||||||
join_vars: true,
|
|
||||||
keep_fargs: true,
|
|
||||||
loops: true,
|
|
||||||
side_effects: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
"use strict";
|
|
||||||
function foo(x) {
|
|
||||||
if (x) {
|
|
||||||
return bar();
|
|
||||||
not_called1();
|
|
||||||
} else {
|
|
||||||
return baz();
|
|
||||||
not_called2();
|
|
||||||
}
|
|
||||||
function bar() { return 7; }
|
|
||||||
return not_reached;
|
|
||||||
function UnusedFunction() {}
|
|
||||||
function baz() { return 8; }
|
|
||||||
}
|
|
||||||
console.log(foo(0), foo(1));
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
"use strict";
|
|
||||||
function foo(x) {
|
|
||||||
return x ? bar() : baz();
|
|
||||||
function bar() { return 7 }
|
|
||||||
function baz() { return 8 }
|
|
||||||
}
|
|
||||||
console.log(foo(0), foo(1));
|
|
||||||
}
|
|
||||||
expect_stdout: "8 7"
|
|
||||||
expect_warnings: [
|
|
||||||
"WARN: Dropping unreachable code [test/compress/issue-1034.js:5,16]",
|
|
||||||
"WARN: Dropping unreachable code [test/compress/issue-1034.js:8,16]",
|
|
||||||
"WARN: Dropping unreachable code [test/compress/issue-1034.js:11,12]",
|
|
||||||
"WARN: Dropping unused function UnusedFunction [test/compress/issue-1034.js:12,21]",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
non_hoisted_function_after_return_2a_strict: {
|
|
||||||
options = {
|
|
||||||
booleans: true,
|
|
||||||
collapse_vars: false,
|
|
||||||
comparisons: true,
|
|
||||||
conditionals: true,
|
|
||||||
dead_code: true,
|
|
||||||
evaluate: true,
|
|
||||||
hoist_funs: false,
|
|
||||||
if_return: true,
|
|
||||||
join_vars: true,
|
|
||||||
keep_fargs: true,
|
|
||||||
loops: true,
|
|
||||||
passes: 2,
|
|
||||||
side_effects: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
"use strict";
|
|
||||||
function foo(x) {
|
|
||||||
if (x) {
|
|
||||||
return bar(1);
|
|
||||||
var a = not_called(1);
|
|
||||||
} else {
|
|
||||||
return bar(2);
|
|
||||||
var b = not_called(2);
|
|
||||||
}
|
|
||||||
var c = bar(3);
|
|
||||||
function bar(x) { return 7 - x; }
|
|
||||||
function nope() {}
|
|
||||||
return b || c;
|
|
||||||
}
|
|
||||||
console.log(foo(0), foo(1));
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
"use strict";
|
|
||||||
function foo(x) {
|
|
||||||
return bar(x ? 1 : 2);
|
|
||||||
function bar(x) {
|
|
||||||
return 7 - x;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
console.log(foo(0), foo(1));
|
|
||||||
}
|
|
||||||
expect_stdout: "5 6"
|
|
||||||
expect_warnings: [
|
|
||||||
"WARN: Dropping unreachable code [test/compress/issue-1034.js:5,16]",
|
|
||||||
"WARN: Declarations in unreachable code! [test/compress/issue-1034.js:5,16]",
|
|
||||||
"WARN: Dropping unreachable code [test/compress/issue-1034.js:8,16]",
|
|
||||||
"WARN: Declarations in unreachable code! [test/compress/issue-1034.js:8,16]",
|
|
||||||
"WARN: Dropping unused variable a [test/compress/issue-1034.js:5,20]",
|
|
||||||
"WARN: Dropping unused function nope [test/compress/issue-1034.js:12,21]",
|
|
||||||
"INFO: pass 0: last_count: Infinity, count: 48",
|
|
||||||
"WARN: Dropping unreachable code [test/compress/issue-1034.js:10,12]",
|
|
||||||
"WARN: Declarations in unreachable code! [test/compress/issue-1034.js:10,12]",
|
|
||||||
"WARN: Dropping unreachable code [test/compress/issue-1034.js:13,12]",
|
|
||||||
"INFO: Dropping unused variable b [test/compress/issue-1034.js:8,20]",
|
|
||||||
"INFO: Dropping unused variable c [test/compress/issue-1034.js:10,16]",
|
|
||||||
"INFO: pass 1: last_count: 48, count: 29",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
non_hoisted_function_after_return_2b_strict: {
|
|
||||||
options = {
|
|
||||||
booleans: true,
|
|
||||||
collapse_vars: false,
|
|
||||||
comparisons: true,
|
|
||||||
conditionals: true,
|
|
||||||
dead_code: true,
|
|
||||||
evaluate: true,
|
|
||||||
hoist_funs: false,
|
|
||||||
if_return: true,
|
|
||||||
join_vars: true,
|
|
||||||
keep_fargs: true,
|
|
||||||
loops: true,
|
|
||||||
side_effects: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
"use strict";
|
|
||||||
function foo(x) {
|
|
||||||
if (x) {
|
|
||||||
return bar(1);
|
|
||||||
} else {
|
|
||||||
return bar(2);
|
|
||||||
var b;
|
|
||||||
}
|
|
||||||
var c = bar(3);
|
|
||||||
function bar(x) {
|
|
||||||
return 7 - x;
|
|
||||||
}
|
|
||||||
return b || c;
|
|
||||||
}
|
|
||||||
console.log(foo(0), foo(1));
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
"use strict";
|
|
||||||
function foo(x) {
|
|
||||||
return bar(x ? 1 : 2);
|
|
||||||
function bar(x) { return 7 - x; }
|
|
||||||
}
|
|
||||||
console.log(foo(0), foo(1));
|
|
||||||
}
|
|
||||||
expect_stdout: "5 6"
|
|
||||||
expect_warnings: [
|
|
||||||
"WARN: Dropping unreachable code [test/compress/issue-1034.js:7,16]",
|
|
||||||
"WARN: Declarations in unreachable code! [test/compress/issue-1034.js:7,16]",
|
|
||||||
"WARN: Dropping unreachable code [test/compress/issue-1034.js:9,12]",
|
|
||||||
"WARN: Declarations in unreachable code! [test/compress/issue-1034.js:9,12]",
|
|
||||||
"WARN: Dropping unreachable code [test/compress/issue-1034.js:13,12]",
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,9 +1,21 @@
|
|||||||
|
const_declaration: {
|
||||||
|
options = {
|
||||||
|
evaluate: true
|
||||||
|
};
|
||||||
|
|
||||||
|
input: {
|
||||||
|
const goog = goog || {};
|
||||||
|
}
|
||||||
|
expect: {
|
||||||
|
const goog = goog || {};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const_pragma: {
|
const_pragma: {
|
||||||
options = {
|
options = {
|
||||||
evaluate: true,
|
evaluate: true,
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
reduce_vars: true,
|
||||||
}
|
};
|
||||||
|
|
||||||
input: {
|
input: {
|
||||||
/** @const */ var goog = goog || {};
|
/** @const */ var goog = goog || {};
|
||||||
@@ -17,9 +29,8 @@ const_pragma: {
|
|||||||
not_const: {
|
not_const: {
|
||||||
options = {
|
options = {
|
||||||
evaluate: true,
|
evaluate: true,
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
reduce_vars: true,
|
||||||
}
|
};
|
||||||
|
|
||||||
input: {
|
input: {
|
||||||
var goog = goog || {};
|
var goog = goog || {};
|
||||||
|
|||||||
@@ -1,91 +1,90 @@
|
|||||||
multiple_functions: {
|
multiple_functions: {
|
||||||
options = {
|
options = { if_return: true, hoist_funs: false };
|
||||||
hoist_funs: false,
|
|
||||||
if_return: true,
|
|
||||||
}
|
|
||||||
input: {
|
input: {
|
||||||
( function() {
|
( function() {
|
||||||
if ( !window ) {
|
if ( !window ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
function f() {}
|
function f() {}
|
||||||
function g() {}
|
function g() {}
|
||||||
} )();
|
} )();
|
||||||
}
|
}
|
||||||
expect: {
|
expect: {
|
||||||
( function() {
|
( function() {
|
||||||
|
function f() {}
|
||||||
|
function g() {}
|
||||||
|
|
||||||
// NOTE: other compression steps will reduce this
|
// NOTE: other compression steps will reduce this
|
||||||
// down to just `window`.
|
// down to just `window`.
|
||||||
if ( window );
|
if ( window );
|
||||||
function f() {}
|
|
||||||
function g() {}
|
|
||||||
} )();
|
} )();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
single_function: {
|
single_function: {
|
||||||
options = {
|
options = { if_return: true, hoist_funs: false };
|
||||||
hoist_funs: false,
|
|
||||||
if_return: true,
|
|
||||||
}
|
|
||||||
input: {
|
input: {
|
||||||
( function() {
|
( function() {
|
||||||
if ( !window ) {
|
if ( !window ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
function f() {}
|
function f() {}
|
||||||
} )();
|
} )();
|
||||||
}
|
}
|
||||||
expect: {
|
expect: {
|
||||||
( function() {
|
( function() {
|
||||||
if ( window );
|
|
||||||
function f() {}
|
function f() {}
|
||||||
|
|
||||||
|
if ( window );
|
||||||
} )();
|
} )();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
deeply_nested: {
|
deeply_nested: {
|
||||||
options = {
|
options = { if_return: true, hoist_funs: false };
|
||||||
hoist_funs: false,
|
|
||||||
if_return: true,
|
|
||||||
}
|
|
||||||
input: {
|
input: {
|
||||||
( function() {
|
( function() {
|
||||||
if ( !window ) {
|
if ( !window ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
function f() {}
|
function f() {}
|
||||||
function g() {}
|
function g() {}
|
||||||
|
|
||||||
if ( !document ) {
|
if ( !document ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
function h() {}
|
function h() {}
|
||||||
} )();
|
} )();
|
||||||
}
|
}
|
||||||
expect: {
|
expect: {
|
||||||
( function() {
|
( function() {
|
||||||
|
function f() {}
|
||||||
|
function g() {}
|
||||||
|
|
||||||
|
function h() {}
|
||||||
|
|
||||||
// NOTE: other compression steps will reduce this
|
// NOTE: other compression steps will reduce this
|
||||||
// down to just `window`.
|
// down to just `window`.
|
||||||
if ( window )
|
if ( window )
|
||||||
if (document);
|
if (document);
|
||||||
function f() {}
|
|
||||||
function g() {}
|
|
||||||
function h() {}
|
|
||||||
} )();
|
} )();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
not_hoisted_when_already_nested: {
|
not_hoisted_when_already_nested: {
|
||||||
options = {
|
options = { if_return: true, hoist_funs: false };
|
||||||
hoist_funs: false,
|
|
||||||
if_return: true,
|
|
||||||
}
|
|
||||||
input: {
|
input: {
|
||||||
( function() {
|
( function() {
|
||||||
if ( !window ) {
|
if ( !window ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( foo ) function f() {}
|
if ( foo ) function f() {}
|
||||||
|
|
||||||
} )();
|
} )();
|
||||||
}
|
}
|
||||||
expect: {
|
expect: {
|
||||||
@@ -95,70 +94,3 @@ not_hoisted_when_already_nested: {
|
|||||||
} )();
|
} )();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
defun_if_return: {
|
|
||||||
options = {
|
|
||||||
hoist_funs: false,
|
|
||||||
if_return: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function e() {
|
|
||||||
function f() {}
|
|
||||||
if (!window) return;
|
|
||||||
else function g() {}
|
|
||||||
function h() {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
function e() {
|
|
||||||
function f() {}
|
|
||||||
if (window) function g() {}
|
|
||||||
function h() {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
defun_hoist_funs: {
|
|
||||||
options = {
|
|
||||||
hoist_funs: true,
|
|
||||||
if_return: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function e() {
|
|
||||||
function f() {}
|
|
||||||
if (!window) return;
|
|
||||||
else function g() {}
|
|
||||||
function h() {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
function e() {
|
|
||||||
function f() {}
|
|
||||||
function g() {}
|
|
||||||
function h() {}
|
|
||||||
if (window);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
defun_else_if_return: {
|
|
||||||
options = {
|
|
||||||
hoist_funs: false,
|
|
||||||
if_return: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function e() {
|
|
||||||
function f() {}
|
|
||||||
if (window) function g() {}
|
|
||||||
else return;
|
|
||||||
function h() {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
function e() {
|
|
||||||
function f() {}
|
|
||||||
if (window) function g() {}
|
|
||||||
function h() {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
with_in_global_scope: {
|
with_in_global_scope: {
|
||||||
options = {
|
options = {
|
||||||
unused: true,
|
unused: true
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
var o = 42;
|
var o = 42;
|
||||||
@@ -18,7 +18,7 @@ with_in_global_scope: {
|
|||||||
}
|
}
|
||||||
with_in_function_scope: {
|
with_in_function_scope: {
|
||||||
options = {
|
options = {
|
||||||
unused: true,
|
unused: true
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
function foo() {
|
function foo() {
|
||||||
@@ -40,7 +40,7 @@ with_in_function_scope: {
|
|||||||
}
|
}
|
||||||
compress_with_with_in_other_scope: {
|
compress_with_with_in_other_scope: {
|
||||||
options = {
|
options = {
|
||||||
unused: true,
|
unused: true
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
function foo() {
|
function foo() {
|
||||||
@@ -69,7 +69,7 @@ compress_with_with_in_other_scope: {
|
|||||||
}
|
}
|
||||||
with_using_existing_variable_outside_scope: {
|
with_using_existing_variable_outside_scope: {
|
||||||
options = {
|
options = {
|
||||||
unused: true,
|
unused: true
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
function f() {
|
function f() {
|
||||||
@@ -99,7 +99,7 @@ with_using_existing_variable_outside_scope: {
|
|||||||
}
|
}
|
||||||
check_drop_unused_in_peer_function: {
|
check_drop_unused_in_peer_function: {
|
||||||
options = {
|
options = {
|
||||||
unused: true,
|
unused: true
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
function outer() {
|
function outer() {
|
||||||
@@ -148,7 +148,7 @@ check_drop_unused_in_peer_function: {
|
|||||||
|
|
||||||
Infinity_not_in_with_scope: {
|
Infinity_not_in_with_scope: {
|
||||||
options = {
|
options = {
|
||||||
unused: true,
|
unused: true
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
var o = { Infinity: 'oInfinity' };
|
var o = { Infinity: 'oInfinity' };
|
||||||
@@ -164,7 +164,7 @@ Infinity_not_in_with_scope: {
|
|||||||
|
|
||||||
Infinity_in_with_scope: {
|
Infinity_in_with_scope: {
|
||||||
options = {
|
options = {
|
||||||
unused: true,
|
unused: true
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
var o = { Infinity: 'oInfinity' };
|
var o = { Infinity: 'oInfinity' };
|
||||||
@@ -180,19 +180,20 @@ Infinity_in_with_scope: {
|
|||||||
|
|
||||||
assorted_Infinity_NaN_undefined_in_with_scope: {
|
assorted_Infinity_NaN_undefined_in_with_scope: {
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
unused: true,
|
||||||
comparisons: true,
|
evaluate: true,
|
||||||
conditionals: true,
|
dead_code: true,
|
||||||
dead_code: true,
|
conditionals: true,
|
||||||
evaluate: true,
|
comparisons: true,
|
||||||
hoist_funs: true,
|
booleans: true,
|
||||||
if_return: true,
|
hoist_funs: true,
|
||||||
join_vars: true,
|
keep_fargs: true,
|
||||||
keep_fargs: true,
|
if_return: true,
|
||||||
|
join_vars: true,
|
||||||
|
cascade: true,
|
||||||
|
side_effects: true,
|
||||||
|
sequences: false,
|
||||||
keep_infinity: false,
|
keep_infinity: false,
|
||||||
sequences: false,
|
|
||||||
side_effects: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
var f = console.log;
|
var f = console.log;
|
||||||
@@ -242,19 +243,20 @@ assorted_Infinity_NaN_undefined_in_with_scope: {
|
|||||||
|
|
||||||
assorted_Infinity_NaN_undefined_in_with_scope_keep_infinity: {
|
assorted_Infinity_NaN_undefined_in_with_scope_keep_infinity: {
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
unused: true,
|
||||||
comparisons: true,
|
evaluate: true,
|
||||||
conditionals: true,
|
dead_code: true,
|
||||||
dead_code: true,
|
conditionals: true,
|
||||||
evaluate: true,
|
comparisons: true,
|
||||||
hoist_funs: true,
|
booleans: true,
|
||||||
if_return: true,
|
hoist_funs: true,
|
||||||
join_vars: true,
|
keep_fargs: true,
|
||||||
keep_fargs: true,
|
if_return: true,
|
||||||
|
join_vars: true,
|
||||||
|
cascade: true,
|
||||||
|
side_effects: true,
|
||||||
|
sequences: false,
|
||||||
keep_infinity: true,
|
keep_infinity: true,
|
||||||
sequences: false,
|
|
||||||
side_effects: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
var f = console.log;
|
var f = console.log;
|
||||||
|
|||||||
@@ -1,15 +1,11 @@
|
|||||||
keep_name_of_getter: {
|
keep_name_of_getter: {
|
||||||
options = {
|
options = { unused: true };
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: { a = { get foo () {} } }
|
input: { a = { get foo () {} } }
|
||||||
expect: { a = { get foo () {} } }
|
expect: { a = { get foo () {} } }
|
||||||
}
|
}
|
||||||
|
|
||||||
keep_name_of_setter: {
|
keep_name_of_setter: {
|
||||||
options = {
|
options = { unused: true };
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: { a = { set foo () {} } }
|
input: { a = { set foo () {} } }
|
||||||
expect: { a = { set foo () {} } }
|
expect: { a = { set foo () {} } }
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
mangle_keep_fnames_false: {
|
mangle_keep_fnames_false: {
|
||||||
options = {
|
options = {
|
||||||
keep_fargs: true,
|
keep_fnames : true,
|
||||||
keep_fnames: true,
|
keep_fargs : true,
|
||||||
}
|
}
|
||||||
mangle = {
|
mangle = {
|
||||||
keep_fnames : false,
|
keep_fnames : false,
|
||||||
@@ -26,8 +26,8 @@ mangle_keep_fnames_false: {
|
|||||||
|
|
||||||
mangle_keep_fnames_true: {
|
mangle_keep_fnames_true: {
|
||||||
options = {
|
options = {
|
||||||
keep_fargs: true,
|
keep_fnames : true,
|
||||||
keep_fnames: true,
|
keep_fargs : true,
|
||||||
}
|
}
|
||||||
mangle = {
|
mangle = {
|
||||||
keep_fnames : true,
|
keep_fnames : true,
|
||||||
|
|||||||
@@ -1,14 +1,15 @@
|
|||||||
pure_function_calls: {
|
pure_function_calls: {
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
evaluate : true,
|
||||||
comparisons: true,
|
conditionals : true,
|
||||||
conditionals: true,
|
comparisons : true,
|
||||||
evaluate: true,
|
side_effects : true,
|
||||||
if_return: true,
|
booleans : true,
|
||||||
join_vars: true,
|
unused : true,
|
||||||
negate_iife: true,
|
if_return : true,
|
||||||
side_effects: true,
|
join_vars : true,
|
||||||
unused: true,
|
cascade : true,
|
||||||
|
negate_iife : true,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
// pure top-level IIFE will be dropped
|
// pure top-level IIFE will be dropped
|
||||||
@@ -48,28 +49,29 @@ pure_function_calls: {
|
|||||||
a.b(), f.g();
|
a.b(), f.g();
|
||||||
}
|
}
|
||||||
expect_warnings: [
|
expect_warnings: [
|
||||||
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:3,8]",
|
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:17,8]",
|
||||||
"WARN: Dropping side-effect-free statement [test/compress/issue-1261.js:3,8]",
|
"WARN: Dropping side-effect-free statement [test/compress/issue-1261.js:17,8]",
|
||||||
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:16,37]",
|
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:30,37]",
|
||||||
"WARN: Dropping unused variable iife2 [test/compress/issue-1261.js:16,16]",
|
"WARN: Dropping unused variable iife2 [test/compress/issue-1261.js:30,16]",
|
||||||
"WARN: Dropping side-effect-free statement [test/compress/issue-1261.js:14,8]",
|
"WARN: Dropping side-effect-free statement [test/compress/issue-1261.js:28,8]",
|
||||||
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:24,8]",
|
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:38,8]",
|
||||||
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:25,31]",
|
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:39,31]",
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
pure_function_calls_toplevel: {
|
pure_function_calls_toplevel: {
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
evaluate : true,
|
||||||
comparisons: true,
|
conditionals : true,
|
||||||
conditionals: true,
|
comparisons : true,
|
||||||
evaluate: true,
|
side_effects : true,
|
||||||
if_return: true,
|
booleans : true,
|
||||||
join_vars: true,
|
unused : true,
|
||||||
negate_iife: true,
|
if_return : true,
|
||||||
side_effects: true,
|
join_vars : true,
|
||||||
toplevel: true,
|
cascade : true,
|
||||||
unused: true,
|
negate_iife : true,
|
||||||
|
toplevel : true,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
// pure top-level IIFE will be dropped
|
// pure top-level IIFE will be dropped
|
||||||
@@ -94,13 +96,6 @@ pure_function_calls_toplevel: {
|
|||||||
})();
|
})();
|
||||||
})();
|
})();
|
||||||
|
|
||||||
// pure top-level calls will be dropped regardless of the leading comments position
|
|
||||||
var MyClass = /*#__PURE__*//*@class*/(function(){
|
|
||||||
function MyClass() {}
|
|
||||||
MyClass.prototype.method = function() {};
|
|
||||||
return MyClass;
|
|
||||||
})();
|
|
||||||
|
|
||||||
// comment #__PURE__ comment
|
// comment #__PURE__ comment
|
||||||
bar(), baz(), quux();
|
bar(), baz(), quux();
|
||||||
a.b(), /* @__PURE__ */ c.d.e(), f.g();
|
a.b(), /* @__PURE__ */ c.d.e(), f.g();
|
||||||
@@ -110,17 +105,15 @@ pure_function_calls_toplevel: {
|
|||||||
a.b(), f.g();
|
a.b(), f.g();
|
||||||
}
|
}
|
||||||
expect_warnings: [
|
expect_warnings: [
|
||||||
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:3,8]",
|
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:79,8]",
|
||||||
"WARN: Dropping side-effect-free statement [test/compress/issue-1261.js:3,8]",
|
"WARN: Dropping side-effect-free statement [test/compress/issue-1261.js:79,8]",
|
||||||
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:16,37]",
|
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:92,37]",
|
||||||
"WARN: Dropping unused variable iife2 [test/compress/issue-1261.js:16,16]",
|
"WARN: Dropping unused variable iife2 [test/compress/issue-1261.js:92,16]",
|
||||||
"WARN: Dropping side-effect-free statement [test/compress/issue-1261.js:14,8]",
|
"WARN: Dropping side-effect-free statement [test/compress/issue-1261.js:90,8]",
|
||||||
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:31,8]",
|
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:100,8]",
|
||||||
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:32,31]",
|
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:101,31]",
|
||||||
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:8,33]",
|
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:84,33]",
|
||||||
"WARN: Dropping unused variable iife1 [test/compress/issue-1261.js:8,12]",
|
"WARN: Dropping unused variable iife1 [test/compress/issue-1261.js:84,12]",
|
||||||
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:24,45]",
|
|
||||||
"WARN: Dropping unused variable MyClass [test/compress/issue-1261.js:24,12]",
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -155,29 +148,29 @@ should_warn: {
|
|||||||
baz();
|
baz();
|
||||||
}
|
}
|
||||||
expect_warnings: [
|
expect_warnings: [
|
||||||
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:1,61]",
|
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:128,61]",
|
||||||
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:1,23]",
|
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:128,23]",
|
||||||
"WARN: Dropping side-effect-free statement [test/compress/issue-1261.js:1,23]",
|
"WARN: Dropping side-effect-free statement [test/compress/issue-1261.js:128,23]",
|
||||||
"WARN: Boolean || always true [test/compress/issue-1261.js:2,23]",
|
"WARN: Boolean || always true [test/compress/issue-1261.js:129,23]",
|
||||||
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:2,23]",
|
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:129,23]",
|
||||||
"WARN: Condition always true [test/compress/issue-1261.js:2,23]",
|
"WARN: Condition always true [test/compress/issue-1261.js:129,23]",
|
||||||
"WARN: Condition left of || always true [test/compress/issue-1261.js:3,8]",
|
"WARN: Condition left of || always true [test/compress/issue-1261.js:130,8]",
|
||||||
"WARN: Condition always true [test/compress/issue-1261.js:3,8]",
|
"WARN: Condition always true [test/compress/issue-1261.js:130,8]",
|
||||||
"WARN: Boolean && always false [test/compress/issue-1261.js:4,23]",
|
"WARN: Boolean && always false [test/compress/issue-1261.js:131,23]",
|
||||||
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:4,23]",
|
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:131,23]",
|
||||||
"WARN: Condition always false [test/compress/issue-1261.js:4,23]",
|
"WARN: Condition always false [test/compress/issue-1261.js:131,23]",
|
||||||
"WARN: Condition left of && always false [test/compress/issue-1261.js:5,8]",
|
"WARN: Condition left of && always false [test/compress/issue-1261.js:132,8]",
|
||||||
"WARN: Condition always false [test/compress/issue-1261.js:5,8]",
|
"WARN: Condition always false [test/compress/issue-1261.js:132,8]",
|
||||||
"WARN: + in boolean context always true [test/compress/issue-1261.js:6,23]",
|
"WARN: + in boolean context always true [test/compress/issue-1261.js:133,23]",
|
||||||
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:6,23]",
|
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:133,23]",
|
||||||
"WARN: Condition always true [test/compress/issue-1261.js:6,23]",
|
"WARN: Condition always true [test/compress/issue-1261.js:133,23]",
|
||||||
"WARN: + in boolean context always true [test/compress/issue-1261.js:7,8]",
|
"WARN: + in boolean context always true [test/compress/issue-1261.js:134,8]",
|
||||||
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:7,31]",
|
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:134,31]",
|
||||||
"WARN: Condition always true [test/compress/issue-1261.js:7,8]",
|
"WARN: Condition always true [test/compress/issue-1261.js:134,8]",
|
||||||
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:8,23]",
|
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:135,23]",
|
||||||
"WARN: Condition always true [test/compress/issue-1261.js:9,8]",
|
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:136,24]",
|
||||||
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:9,24]",
|
"WARN: Condition always true [test/compress/issue-1261.js:136,8]",
|
||||||
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:10,31]",
|
"WARN: Dropping __PURE__ call [test/compress/issue-1261.js:137,31]",
|
||||||
"WARN: Condition always false [test/compress/issue-1261.js:10,8]",
|
"WARN: Condition always false [test/compress/issue-1261.js:137,8]",
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,16 +1,17 @@
|
|||||||
string_plus_optimization: {
|
string_plus_optimization: {
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
side_effects : true,
|
||||||
comparisons: true,
|
evaluate : true,
|
||||||
conditionals: true,
|
conditionals : true,
|
||||||
dead_code: true,
|
comparisons : true,
|
||||||
evaluate: true,
|
dead_code : true,
|
||||||
hoist_funs: true,
|
booleans : true,
|
||||||
if_return: true,
|
unused : true,
|
||||||
join_vars: true,
|
if_return : true,
|
||||||
side_effects: true,
|
join_vars : true,
|
||||||
unused: true,
|
cascade : true,
|
||||||
}
|
hoist_funs : true,
|
||||||
|
};
|
||||||
input: {
|
input: {
|
||||||
function foo(anything) {
|
function foo(anything) {
|
||||||
function throwing_function() {
|
function throwing_function() {
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
issue_1321_no_debug: {
|
issue_1321_no_debug: {
|
||||||
mangle = {
|
mangle_props = {
|
||||||
properties: {
|
ignore_quoted: true
|
||||||
keep_quoted: true,
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
var x = {};
|
var x = {};
|
||||||
@@ -12,19 +10,17 @@ issue_1321_no_debug: {
|
|||||||
}
|
}
|
||||||
expect: {
|
expect: {
|
||||||
var x = {};
|
var x = {};
|
||||||
x.x = 1;
|
x.b = 1;
|
||||||
x["a"] = 2 * x.x;
|
x["a"] = 2 * x.b;
|
||||||
console.log(x.x, x["a"]);
|
console.log(x.b, x["a"]);
|
||||||
}
|
}
|
||||||
expect_stdout: true
|
expect_stdout: true
|
||||||
}
|
}
|
||||||
|
|
||||||
issue_1321_debug: {
|
issue_1321_debug: {
|
||||||
mangle = {
|
mangle_props = {
|
||||||
properties: {
|
ignore_quoted: true,
|
||||||
debug: "",
|
debug: ""
|
||||||
keep_quoted: true,
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
var x = {};
|
var x = {};
|
||||||
@@ -34,18 +30,16 @@ issue_1321_debug: {
|
|||||||
}
|
}
|
||||||
expect: {
|
expect: {
|
||||||
var x = {};
|
var x = {};
|
||||||
x.x = 1;
|
x.a = 1;
|
||||||
x["_$foo$_"] = 2 * x.x;
|
x["_$foo$_"] = 2 * x.a;
|
||||||
console.log(x.x, x["_$foo$_"]);
|
console.log(x.a, x["_$foo$_"]);
|
||||||
}
|
}
|
||||||
expect_stdout: true
|
expect_stdout: true
|
||||||
}
|
}
|
||||||
|
|
||||||
issue_1321_with_quoted: {
|
issue_1321_with_quoted: {
|
||||||
mangle = {
|
mangle_props = {
|
||||||
properties: {
|
ignore_quoted: false
|
||||||
keep_quoted: false,
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
var x = {};
|
var x = {};
|
||||||
@@ -55,9 +49,9 @@ issue_1321_with_quoted: {
|
|||||||
}
|
}
|
||||||
expect: {
|
expect: {
|
||||||
var x = {};
|
var x = {};
|
||||||
x.x = 1;
|
x.a = 1;
|
||||||
x["o"] = 2 * x.x;
|
x["b"] = 2 * x.a;
|
||||||
console.log(x.x, x["o"]);
|
console.log(x.a, x["b"]);
|
||||||
}
|
}
|
||||||
expect_stdout: true
|
expect_stdout: true
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
tranformation_sort_order_equal: {
|
tranformation_sort_order_equal: {
|
||||||
options = {
|
options = {
|
||||||
comparisons: true,
|
comparisons: true,
|
||||||
}
|
};
|
||||||
|
|
||||||
input: { (a = parseInt('100')) == a }
|
input: { (a = parseInt('100')) == a }
|
||||||
expect: { (a = parseInt('100')) == a }
|
expect: { (a = parseInt('100')) == a }
|
||||||
@@ -24,7 +24,7 @@ tranformation_sort_order_equal: {
|
|||||||
tranformation_sort_order_unequal: {
|
tranformation_sort_order_unequal: {
|
||||||
options = {
|
options = {
|
||||||
comparisons: true,
|
comparisons: true,
|
||||||
}
|
};
|
||||||
|
|
||||||
input: { (a = parseInt('100')) != a }
|
input: { (a = parseInt('100')) != a }
|
||||||
expect: { (a = parseInt('100')) != a }
|
expect: { (a = parseInt('100')) != a }
|
||||||
@@ -33,7 +33,7 @@ tranformation_sort_order_unequal: {
|
|||||||
tranformation_sort_order_lesser_or_equal: {
|
tranformation_sort_order_lesser_or_equal: {
|
||||||
options = {
|
options = {
|
||||||
comparisons: true,
|
comparisons: true,
|
||||||
}
|
};
|
||||||
|
|
||||||
input: { (a = parseInt('100')) <= a }
|
input: { (a = parseInt('100')) <= a }
|
||||||
expect: { (a = parseInt('100')) <= a }
|
expect: { (a = parseInt('100')) <= a }
|
||||||
@@ -41,7 +41,7 @@ tranformation_sort_order_lesser_or_equal: {
|
|||||||
tranformation_sort_order_greater_or_equal: {
|
tranformation_sort_order_greater_or_equal: {
|
||||||
options = {
|
options = {
|
||||||
comparisons: true,
|
comparisons: true,
|
||||||
}
|
};
|
||||||
|
|
||||||
input: { (a = parseInt('100')) >= a }
|
input: { (a = parseInt('100')) >= a }
|
||||||
expect: { (a = parseInt('100')) >= a }
|
expect: { (a = parseInt('100')) >= a }
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
level_zero: {
|
level_zero: {
|
||||||
options = {
|
options = {
|
||||||
keep_fnames: true,
|
keep_fnames: true
|
||||||
}
|
}
|
||||||
mangle = {
|
mangle = {
|
||||||
keep_fnames: true
|
keep_fnames: true
|
||||||
@@ -29,7 +29,7 @@ level_zero: {
|
|||||||
|
|
||||||
level_one: {
|
level_one: {
|
||||||
options = {
|
options = {
|
||||||
keep_fnames: true,
|
keep_fnames: true
|
||||||
}
|
}
|
||||||
mangle = {
|
mangle = {
|
||||||
keep_fnames: true
|
keep_fnames: true
|
||||||
@@ -58,7 +58,7 @@ level_one: {
|
|||||||
|
|
||||||
level_two: {
|
level_two: {
|
||||||
options = {
|
options = {
|
||||||
keep_fnames: true,
|
keep_fnames: true
|
||||||
}
|
}
|
||||||
mangle = {
|
mangle = {
|
||||||
keep_fnames: true
|
keep_fnames: true
|
||||||
@@ -97,7 +97,7 @@ level_two: {
|
|||||||
|
|
||||||
level_three: {
|
level_three: {
|
||||||
options = {
|
options = {
|
||||||
keep_fnames: true,
|
keep_fnames: true
|
||||||
}
|
}
|
||||||
mangle = {
|
mangle = {
|
||||||
keep_fnames: true
|
keep_fnames: true
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ unsafe_undefined: {
|
|||||||
options = {
|
options = {
|
||||||
conditionals: true,
|
conditionals: true,
|
||||||
if_return: true,
|
if_return: true,
|
||||||
unsafe_undefined: true,
|
unsafe: true
|
||||||
}
|
}
|
||||||
mangle = {}
|
mangle = {}
|
||||||
input: {
|
input: {
|
||||||
@@ -30,7 +30,7 @@ keep_fnames: {
|
|||||||
options = {
|
options = {
|
||||||
conditionals: true,
|
conditionals: true,
|
||||||
if_return: true,
|
if_return: true,
|
||||||
unsafe_undefined: true,
|
unsafe: true
|
||||||
}
|
}
|
||||||
mangle = {
|
mangle = {
|
||||||
keep_fnames: true
|
keep_fnames: true
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
typeof_eq_undefined: {
|
typeof_eq_undefined: {
|
||||||
options = {
|
options = {
|
||||||
comparisons: true,
|
comparisons: true
|
||||||
typeofs: true,
|
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
var a = typeof b != "undefined";
|
var a = typeof b != "undefined";
|
||||||
@@ -24,8 +23,7 @@ typeof_eq_undefined: {
|
|||||||
typeof_eq_undefined_ie8: {
|
typeof_eq_undefined_ie8: {
|
||||||
options = {
|
options = {
|
||||||
comparisons: true,
|
comparisons: true,
|
||||||
ie8: true,
|
screw_ie8: false
|
||||||
typeofs: true,
|
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
var a = typeof b != "undefined";
|
var a = typeof b != "undefined";
|
||||||
@@ -47,8 +45,7 @@ typeof_eq_undefined_ie8: {
|
|||||||
|
|
||||||
undefined_redefined: {
|
undefined_redefined: {
|
||||||
options = {
|
options = {
|
||||||
comparisons: true,
|
comparisons: true
|
||||||
typeofs: true,
|
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
function f(undefined) {
|
function f(undefined) {
|
||||||
@@ -61,8 +58,7 @@ undefined_redefined: {
|
|||||||
|
|
||||||
undefined_redefined_mangle: {
|
undefined_redefined_mangle: {
|
||||||
options = {
|
options = {
|
||||||
comparisons: true,
|
comparisons: true
|
||||||
typeofs: true,
|
|
||||||
}
|
}
|
||||||
mangle = {}
|
mangle = {}
|
||||||
input: {
|
input: {
|
||||||
|
|||||||
@@ -22,17 +22,18 @@ else_with_empty_statement: {
|
|||||||
|
|
||||||
conditional_false_stray_else_in_loop: {
|
conditional_false_stray_else_in_loop: {
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
evaluate : true,
|
||||||
comparisons: true,
|
comparisons : true,
|
||||||
conditionals: false,
|
booleans : true,
|
||||||
dead_code: true,
|
unused : true,
|
||||||
evaluate: true,
|
loops : true,
|
||||||
hoist_vars: true,
|
side_effects : true,
|
||||||
if_return: true,
|
dead_code : true,
|
||||||
join_vars: true,
|
hoist_vars : true,
|
||||||
loops: true,
|
join_vars : true,
|
||||||
side_effects: true,
|
if_return : true,
|
||||||
unused: true,
|
cascade : true,
|
||||||
|
conditionals : false,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
for (var i = 1; i <= 4; ++i) {
|
for (var i = 1; i <= 4; ++i) {
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
screw_ie8: {
|
screw_ie8: {
|
||||||
options = {
|
options = {
|
||||||
ie8: false,
|
screw_ie8: true,
|
||||||
}
|
}
|
||||||
mangle = {
|
mangle = {
|
||||||
ie8: false,
|
screw_ie8: true,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
try { throw "foo"; } catch (x) { console.log(x); }
|
try { throw "foo"; } catch (x) { console.log(x); }
|
||||||
@@ -16,10 +16,10 @@ screw_ie8: {
|
|||||||
|
|
||||||
support_ie8: {
|
support_ie8: {
|
||||||
options = {
|
options = {
|
||||||
ie8: true,
|
screw_ie8: false,
|
||||||
}
|
}
|
||||||
mangle = {
|
mangle = {
|
||||||
ie8: true,
|
screw_ie8: false,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
try { throw "foo"; } catch (x) { console.log(x); }
|
try { throw "foo"; } catch (x) { console.log(x); }
|
||||||
@@ -61,7 +61,7 @@ unsafe_undefined: {
|
|||||||
options = {
|
options = {
|
||||||
conditionals: true,
|
conditionals: true,
|
||||||
if_return: true,
|
if_return: true,
|
||||||
unsafe_undefined: true,
|
unsafe: true,
|
||||||
}
|
}
|
||||||
mangle = {}
|
mangle = {}
|
||||||
input: {
|
input: {
|
||||||
@@ -85,3 +85,15 @@ unsafe_undefined: {
|
|||||||
}
|
}
|
||||||
expect_stdout: true
|
expect_stdout: true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
runtime_error: {
|
||||||
|
input: {
|
||||||
|
const a = 1;
|
||||||
|
console.log(a++);
|
||||||
|
}
|
||||||
|
expect: {
|
||||||
|
const a = 1;
|
||||||
|
console.log(a++);
|
||||||
|
}
|
||||||
|
expect_stdout: true
|
||||||
|
}
|
||||||
|
|||||||
@@ -2,7 +2,6 @@ chained_evaluation_1: {
|
|||||||
options = {
|
options = {
|
||||||
collapse_vars: true,
|
collapse_vars: true,
|
||||||
evaluate: true,
|
evaluate: true,
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
reduce_vars: true,
|
||||||
unused: true,
|
unused: true,
|
||||||
}
|
}
|
||||||
@@ -19,7 +18,9 @@ chained_evaluation_1: {
|
|||||||
expect: {
|
expect: {
|
||||||
(function() {
|
(function() {
|
||||||
(function() {
|
(function() {
|
||||||
f(1).bar = 1;
|
var c;
|
||||||
|
c = f(1);
|
||||||
|
c.bar = 1;
|
||||||
})();
|
})();
|
||||||
})();
|
})();
|
||||||
}
|
}
|
||||||
@@ -29,7 +30,6 @@ chained_evaluation_2: {
|
|||||||
options = {
|
options = {
|
||||||
collapse_vars: true,
|
collapse_vars: true,
|
||||||
evaluate: true,
|
evaluate: true,
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
reduce_vars: true,
|
||||||
unused: true,
|
unused: true,
|
||||||
}
|
}
|
||||||
@@ -46,36 +46,10 @@ chained_evaluation_2: {
|
|||||||
expect: {
|
expect: {
|
||||||
(function() {
|
(function() {
|
||||||
(function() {
|
(function() {
|
||||||
var b = "long piece of string";
|
var c, b = "long piece of string";
|
||||||
f(b).bar = b;
|
|
||||||
})();
|
|
||||||
})();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
chained_evaluation_3: {
|
|
||||||
options = {
|
|
||||||
collapse_vars: true,
|
|
||||||
evaluate: 10,
|
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
(function() {
|
|
||||||
var a = "long piece of string";
|
|
||||||
(function() {
|
|
||||||
var b = a, c;
|
|
||||||
c = f(b);
|
c = f(b);
|
||||||
c.bar = b;
|
c.bar = b;
|
||||||
})();
|
})();
|
||||||
})();
|
})();
|
||||||
}
|
}
|
||||||
expect: {
|
|
||||||
(function() {
|
|
||||||
(function() {
|
|
||||||
f("long piece of string").bar = "long piece of string";
|
|
||||||
})();
|
|
||||||
})();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
|
|
||||||
issue_1639_1: {
|
issue_1639_1: {
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
booleans: true,
|
||||||
collapse_vars: true,
|
cascade: true,
|
||||||
conditionals: true,
|
conditionals: true,
|
||||||
evaluate: true,
|
evaluate: true,
|
||||||
join_vars: true,
|
join_vars: true,
|
||||||
@@ -11,6 +12,7 @@ issue_1639_1: {
|
|||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
var a = 100, b = 10;
|
var a = 100, b = 10;
|
||||||
|
|
||||||
var L1 = 5;
|
var L1 = 5;
|
||||||
while (--L1 > 0) {
|
while (--L1 > 0) {
|
||||||
if ((--b), false) {
|
if ((--b), false) {
|
||||||
@@ -19,20 +21,21 @@ issue_1639_1: {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(a, b);
|
console.log(a, b);
|
||||||
}
|
}
|
||||||
expect: {
|
expect: {
|
||||||
for (var a = 100, b = 10, L1 = 5; --L1 > 0;)
|
for (var a = 100, b = 10, L1 = 5; --L1 > 0;)
|
||||||
if (--b, 0) var ignore = 0;
|
if (--b, !1) var ignore = 0;
|
||||||
console.log(a, b);
|
console.log(a, b);
|
||||||
}
|
}
|
||||||
expect_stdout: "100 6"
|
expect_stdout: true
|
||||||
}
|
}
|
||||||
|
|
||||||
issue_1639_2: {
|
issue_1639_2: {
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
booleans: true,
|
||||||
collapse_vars: true,
|
cascade: true,
|
||||||
conditionals: true,
|
conditionals: true,
|
||||||
evaluate: true,
|
evaluate: true,
|
||||||
join_vars: true,
|
join_vars: true,
|
||||||
@@ -41,12 +44,14 @@ issue_1639_2: {
|
|||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
var a = 100, b = 10;
|
var a = 100, b = 10;
|
||||||
|
|
||||||
function f19() {
|
function f19() {
|
||||||
if (++a, false)
|
if (++a, false)
|
||||||
if (a)
|
if (a)
|
||||||
if (++a);
|
if (++a);
|
||||||
}
|
}
|
||||||
f19();
|
f19();
|
||||||
|
|
||||||
console.log(a, b);
|
console.log(a, b);
|
||||||
}
|
}
|
||||||
expect: {
|
expect: {
|
||||||
@@ -57,13 +62,13 @@ issue_1639_2: {
|
|||||||
f19(),
|
f19(),
|
||||||
console.log(a, b);
|
console.log(a, b);
|
||||||
}
|
}
|
||||||
expect_stdout: "101 10"
|
expect_stdout: true
|
||||||
}
|
}
|
||||||
|
|
||||||
issue_1639_3: {
|
issue_1639_3: {
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
booleans: true,
|
||||||
collapse_vars: true,
|
cascade: true,
|
||||||
conditionals: true,
|
conditionals: true,
|
||||||
evaluate: true,
|
evaluate: true,
|
||||||
sequences: true,
|
sequences: true,
|
||||||
@@ -79,5 +84,5 @@ issue_1639_3: {
|
|||||||
a++,
|
a++,
|
||||||
console.log(a, b);
|
console.log(a, b);
|
||||||
}
|
}
|
||||||
expect_stdout: "101 10"
|
expect_stdout: true
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
f7: {
|
f7: {
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
booleans: true,
|
||||||
|
cascade: true,
|
||||||
collapse_vars: true,
|
collapse_vars: true,
|
||||||
comparisons: true,
|
comparisons: true,
|
||||||
conditionals: true,
|
conditionals: true,
|
||||||
@@ -14,7 +15,6 @@ f7: {
|
|||||||
negate_iife: true,
|
negate_iife: true,
|
||||||
passes: 3,
|
passes: 3,
|
||||||
properties: true,
|
properties: true,
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
reduce_vars: true,
|
||||||
sequences: true,
|
sequences: true,
|
||||||
side_effects: true,
|
side_effects: true,
|
||||||
@@ -38,7 +38,7 @@ f7: {
|
|||||||
"var b = 10;",
|
"var b = 10;",
|
||||||
"",
|
"",
|
||||||
"!function() {",
|
"!function() {",
|
||||||
" b = 100;",
|
" for (;b = 100, !1; ) ;",
|
||||||
"}(), console.log(100, b);",
|
"}(), console.log(100, b);",
|
||||||
]
|
]
|
||||||
expect_stdout: true
|
expect_stdout: true
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
side_effects_catch: {
|
side_effects_catch: {
|
||||||
options = {
|
options = {
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
reduce_vars: true,
|
||||||
side_effects: true,
|
side_effects: true,
|
||||||
unused: true,
|
unused: true,
|
||||||
@@ -35,7 +34,6 @@ side_effects_catch: {
|
|||||||
|
|
||||||
side_effects_else: {
|
side_effects_else: {
|
||||||
options = {
|
options = {
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
reduce_vars: true,
|
||||||
side_effects: true,
|
side_effects: true,
|
||||||
unused: true,
|
unused: true,
|
||||||
@@ -64,7 +62,6 @@ side_effects_else: {
|
|||||||
|
|
||||||
side_effects_finally: {
|
side_effects_finally: {
|
||||||
options = {
|
options = {
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
reduce_vars: true,
|
||||||
side_effects: true,
|
side_effects: true,
|
||||||
unused: true,
|
unused: true,
|
||||||
@@ -101,7 +98,6 @@ side_effects_finally: {
|
|||||||
|
|
||||||
side_effects_label: {
|
side_effects_label: {
|
||||||
options = {
|
options = {
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
reduce_vars: true,
|
||||||
side_effects: true,
|
side_effects: true,
|
||||||
unused: true,
|
unused: true,
|
||||||
@@ -134,7 +130,6 @@ side_effects_label: {
|
|||||||
|
|
||||||
side_effects_switch: {
|
side_effects_switch: {
|
||||||
options = {
|
options = {
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
reduce_vars: true,
|
||||||
side_effects: true,
|
side_effects: true,
|
||||||
unused: true,
|
unused: true,
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
mangle_catch: {
|
mangle_catch: {
|
||||||
options = {
|
options = {
|
||||||
ie8: false,
|
screw_ie8: true,
|
||||||
toplevel: false,
|
toplevel: false,
|
||||||
}
|
}
|
||||||
mangle = {
|
mangle = {
|
||||||
ie8: false,
|
screw_ie8: true,
|
||||||
toplevel: false,
|
toplevel: false,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
@@ -22,11 +22,11 @@ mangle_catch: {
|
|||||||
|
|
||||||
mangle_catch_ie8: {
|
mangle_catch_ie8: {
|
||||||
options = {
|
options = {
|
||||||
ie8: true,
|
screw_ie8: false,
|
||||||
toplevel: false,
|
toplevel: false,
|
||||||
}
|
}
|
||||||
mangle = {
|
mangle = {
|
||||||
ie8: true,
|
screw_ie8: false,
|
||||||
toplevel: false,
|
toplevel: false,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
@@ -44,11 +44,11 @@ mangle_catch_ie8: {
|
|||||||
|
|
||||||
mangle_catch_var: {
|
mangle_catch_var: {
|
||||||
options = {
|
options = {
|
||||||
ie8: false,
|
screw_ie8: true,
|
||||||
toplevel: false,
|
toplevel: false,
|
||||||
}
|
}
|
||||||
mangle = {
|
mangle = {
|
||||||
ie8: false,
|
screw_ie8: true,
|
||||||
toplevel: false,
|
toplevel: false,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
@@ -66,11 +66,11 @@ mangle_catch_var: {
|
|||||||
|
|
||||||
mangle_catch_var_ie8: {
|
mangle_catch_var_ie8: {
|
||||||
options = {
|
options = {
|
||||||
ie8: true,
|
screw_ie8: false,
|
||||||
toplevel: false,
|
toplevel: false,
|
||||||
}
|
}
|
||||||
mangle = {
|
mangle = {
|
||||||
ie8: true,
|
screw_ie8: false,
|
||||||
toplevel: false,
|
toplevel: false,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
@@ -88,11 +88,11 @@ mangle_catch_var_ie8: {
|
|||||||
|
|
||||||
mangle_catch_toplevel: {
|
mangle_catch_toplevel: {
|
||||||
options = {
|
options = {
|
||||||
ie8: false,
|
screw_ie8: true,
|
||||||
toplevel: true,
|
toplevel: true,
|
||||||
}
|
}
|
||||||
mangle = {
|
mangle = {
|
||||||
ie8: false,
|
screw_ie8: true,
|
||||||
toplevel: true,
|
toplevel: true,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
@@ -104,17 +104,17 @@ mangle_catch_toplevel: {
|
|||||||
}
|
}
|
||||||
console.log(a);
|
console.log(a);
|
||||||
}
|
}
|
||||||
expect_exact: 'var c="FAIL";try{throw 1}catch(o){c="PASS"}console.log(c);'
|
expect_exact: 'var o="FAIL";try{throw 1}catch(c){o="PASS"}console.log(o);'
|
||||||
expect_stdout: "PASS"
|
expect_stdout: "PASS"
|
||||||
}
|
}
|
||||||
|
|
||||||
mangle_catch_ie8_toplevel: {
|
mangle_catch_ie8_toplevel: {
|
||||||
options = {
|
options = {
|
||||||
ie8: true,
|
screw_ie8: false,
|
||||||
toplevel: true,
|
toplevel: true,
|
||||||
}
|
}
|
||||||
mangle = {
|
mangle = {
|
||||||
ie8: true,
|
screw_ie8: false,
|
||||||
toplevel: true,
|
toplevel: true,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
@@ -132,11 +132,11 @@ mangle_catch_ie8_toplevel: {
|
|||||||
|
|
||||||
mangle_catch_var_toplevel: {
|
mangle_catch_var_toplevel: {
|
||||||
options = {
|
options = {
|
||||||
ie8: false,
|
screw_ie8: true,
|
||||||
toplevel: true,
|
toplevel: true,
|
||||||
}
|
}
|
||||||
mangle = {
|
mangle = {
|
||||||
ie8: false,
|
screw_ie8: true,
|
||||||
toplevel: true,
|
toplevel: true,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
@@ -148,17 +148,17 @@ mangle_catch_var_toplevel: {
|
|||||||
}
|
}
|
||||||
console.log(a);
|
console.log(a);
|
||||||
}
|
}
|
||||||
expect_exact: 'var r="FAIL";try{throw 1}catch(o){var r="PASS"}console.log(r);'
|
expect_exact: 'var o="FAIL";try{throw 1}catch(r){var o="PASS"}console.log(o);'
|
||||||
expect_stdout: "PASS"
|
expect_stdout: "PASS"
|
||||||
}
|
}
|
||||||
|
|
||||||
mangle_catch_var_ie8_toplevel: {
|
mangle_catch_var_ie8_toplevel: {
|
||||||
options = {
|
options = {
|
||||||
ie8: true,
|
screw_ie8: false,
|
||||||
toplevel: true,
|
toplevel: true,
|
||||||
}
|
}
|
||||||
mangle = {
|
mangle = {
|
||||||
ie8: true,
|
screw_ie8: false,
|
||||||
toplevel: true,
|
toplevel: true,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
@@ -176,11 +176,11 @@ mangle_catch_var_ie8_toplevel: {
|
|||||||
|
|
||||||
mangle_catch_redef_1: {
|
mangle_catch_redef_1: {
|
||||||
options = {
|
options = {
|
||||||
ie8: false,
|
screw_ie8: true,
|
||||||
toplevel: false,
|
toplevel: false,
|
||||||
}
|
}
|
||||||
mangle = {
|
mangle = {
|
||||||
ie8: false,
|
screw_ie8: true,
|
||||||
toplevel: false,
|
toplevel: false,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
@@ -198,11 +198,11 @@ mangle_catch_redef_1: {
|
|||||||
|
|
||||||
mangle_catch_redef_1_ie8: {
|
mangle_catch_redef_1_ie8: {
|
||||||
options = {
|
options = {
|
||||||
ie8: true,
|
screw_ie8: false,
|
||||||
toplevel: false,
|
toplevel: false,
|
||||||
}
|
}
|
||||||
mangle = {
|
mangle = {
|
||||||
ie8: true,
|
screw_ie8: false,
|
||||||
toplevel: false,
|
toplevel: false,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
@@ -220,11 +220,11 @@ mangle_catch_redef_1_ie8: {
|
|||||||
|
|
||||||
mangle_catch_redef_1_toplevel: {
|
mangle_catch_redef_1_toplevel: {
|
||||||
options = {
|
options = {
|
||||||
ie8: false,
|
screw_ie8: true,
|
||||||
toplevel: true,
|
toplevel: true,
|
||||||
}
|
}
|
||||||
mangle = {
|
mangle = {
|
||||||
ie8: false,
|
screw_ie8: true,
|
||||||
toplevel: true,
|
toplevel: true,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
@@ -242,11 +242,11 @@ mangle_catch_redef_1_toplevel: {
|
|||||||
|
|
||||||
mangle_catch_redef_1_ie8_toplevel: {
|
mangle_catch_redef_1_ie8_toplevel: {
|
||||||
options = {
|
options = {
|
||||||
ie8: true,
|
screw_ie8: false,
|
||||||
toplevel: true,
|
toplevel: true,
|
||||||
}
|
}
|
||||||
mangle = {
|
mangle = {
|
||||||
ie8: true,
|
screw_ie8: false,
|
||||||
toplevel: true,
|
toplevel: true,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
@@ -264,11 +264,11 @@ mangle_catch_redef_1_ie8_toplevel: {
|
|||||||
|
|
||||||
mangle_catch_redef_2: {
|
mangle_catch_redef_2: {
|
||||||
options = {
|
options = {
|
||||||
ie8: false,
|
screw_ie8: true,
|
||||||
toplevel: false,
|
toplevel: false,
|
||||||
}
|
}
|
||||||
mangle = {
|
mangle = {
|
||||||
ie8: false,
|
screw_ie8: true,
|
||||||
toplevel: false,
|
toplevel: false,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
@@ -285,11 +285,11 @@ mangle_catch_redef_2: {
|
|||||||
|
|
||||||
mangle_catch_redef_2_ie8: {
|
mangle_catch_redef_2_ie8: {
|
||||||
options = {
|
options = {
|
||||||
ie8: true,
|
screw_ie8: false,
|
||||||
toplevel: false,
|
toplevel: false,
|
||||||
}
|
}
|
||||||
mangle = {
|
mangle = {
|
||||||
ie8: true,
|
screw_ie8: false,
|
||||||
toplevel: false,
|
toplevel: false,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
@@ -306,11 +306,11 @@ mangle_catch_redef_2_ie8: {
|
|||||||
|
|
||||||
mangle_catch_redef_2_toplevel: {
|
mangle_catch_redef_2_toplevel: {
|
||||||
options = {
|
options = {
|
||||||
ie8: false,
|
screw_ie8: true,
|
||||||
toplevel: true,
|
toplevel: true,
|
||||||
}
|
}
|
||||||
mangle = {
|
mangle = {
|
||||||
ie8: false,
|
screw_ie8: true,
|
||||||
toplevel: true,
|
toplevel: true,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
@@ -327,11 +327,11 @@ mangle_catch_redef_2_toplevel: {
|
|||||||
|
|
||||||
mangle_catch_redef_2_ie8_toplevel: {
|
mangle_catch_redef_2_ie8_toplevel: {
|
||||||
options = {
|
options = {
|
||||||
ie8: true,
|
screw_ie8: false,
|
||||||
toplevel: true,
|
toplevel: true,
|
||||||
}
|
}
|
||||||
mangle = {
|
mangle = {
|
||||||
ie8: true,
|
screw_ie8: false,
|
||||||
toplevel: true,
|
toplevel: true,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
@@ -345,95 +345,3 @@ mangle_catch_redef_2_ie8_toplevel: {
|
|||||||
expect_exact: 'try{throw"FAIL1"}catch(o){var o="FAIL2"}console.log(o);'
|
expect_exact: 'try{throw"FAIL1"}catch(o){var o="FAIL2"}console.log(o);'
|
||||||
expect_stdout: "undefined"
|
expect_stdout: "undefined"
|
||||||
}
|
}
|
||||||
|
|
||||||
mangle_catch_redef_3: {
|
|
||||||
mangle = {
|
|
||||||
ie8: false,
|
|
||||||
toplevel: false,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var o = "PASS";
|
|
||||||
try {
|
|
||||||
throw 0;
|
|
||||||
} catch (o) {
|
|
||||||
(function() {
|
|
||||||
function f() {
|
|
||||||
o = "FAIL";
|
|
||||||
}
|
|
||||||
f(), f();
|
|
||||||
})();
|
|
||||||
}
|
|
||||||
console.log(o);
|
|
||||||
}
|
|
||||||
expect_exact: 'var o="PASS";try{throw 0}catch(o){(function(){function c(){o="FAIL"}c(),c()})()}console.log(o);'
|
|
||||||
expect_stdout: true
|
|
||||||
}
|
|
||||||
|
|
||||||
mangle_catch_redef_3_toplevel: {
|
|
||||||
mangle = {
|
|
||||||
ie8: false,
|
|
||||||
toplevel: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var o = "PASS";
|
|
||||||
try {
|
|
||||||
throw 0;
|
|
||||||
} catch (o) {
|
|
||||||
(function() {
|
|
||||||
function f() {
|
|
||||||
o = "FAIL";
|
|
||||||
}
|
|
||||||
f(), f();
|
|
||||||
})();
|
|
||||||
}
|
|
||||||
console.log(o);
|
|
||||||
}
|
|
||||||
expect_exact: 'var c="PASS";try{throw 0}catch(c){(function(){function o(){c="FAIL"}o(),o()})()}console.log(c);'
|
|
||||||
expect_stdout: true
|
|
||||||
}
|
|
||||||
|
|
||||||
mangle_catch_redef_3_ie8: {
|
|
||||||
mangle = {
|
|
||||||
ie8: true,
|
|
||||||
toplevel: false,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var o = "PASS";
|
|
||||||
try {
|
|
||||||
throw 0;
|
|
||||||
} catch (o) {
|
|
||||||
(function() {
|
|
||||||
function f() {
|
|
||||||
o = "FAIL";
|
|
||||||
}
|
|
||||||
f(), f();
|
|
||||||
})();
|
|
||||||
}
|
|
||||||
console.log(o);
|
|
||||||
}
|
|
||||||
expect_exact: 'var o="PASS";try{throw 0}catch(o){(function(){function c(){o="FAIL"}c(),c()})()}console.log(o);'
|
|
||||||
expect_stdout: true
|
|
||||||
}
|
|
||||||
|
|
||||||
mangle_catch_redef_3_ie8_toplevel: {
|
|
||||||
mangle = {
|
|
||||||
ie8: true,
|
|
||||||
toplevel: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var o = "PASS";
|
|
||||||
try {
|
|
||||||
throw 0;
|
|
||||||
} catch (o) {
|
|
||||||
(function() {
|
|
||||||
function f() {
|
|
||||||
o = "FAIL";
|
|
||||||
}
|
|
||||||
f(), f();
|
|
||||||
})();
|
|
||||||
}
|
|
||||||
console.log(o);
|
|
||||||
}
|
|
||||||
expect_exact: 'var c="PASS";try{throw 0}catch(c){(function(){function o(){c="FAIL"}o(),o()})()}console.log(c);'
|
|
||||||
expect_stdout: true
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,6 +1,27 @@
|
|||||||
function_iife_catch: {
|
function_iife_catch: {
|
||||||
mangle = {
|
mangle = {
|
||||||
ie8: false,
|
screw_ie8: true,
|
||||||
|
}
|
||||||
|
input: {
|
||||||
|
function f(n) {
|
||||||
|
!function() {
|
||||||
|
try {
|
||||||
|
throw 0;
|
||||||
|
} catch (n) {
|
||||||
|
var a = 1;
|
||||||
|
console.log(n, a);
|
||||||
|
}
|
||||||
|
}();
|
||||||
|
}
|
||||||
|
f();
|
||||||
|
}
|
||||||
|
expect_exact: "function f(o){!function(){try{throw 0}catch(c){var o=1;console.log(c,o)}}()}f();"
|
||||||
|
expect_stdout: "0 1"
|
||||||
|
}
|
||||||
|
|
||||||
|
function_iife_catch_ie8: {
|
||||||
|
mangle = {
|
||||||
|
screw_ie8: false,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
function f(n) {
|
function f(n) {
|
||||||
@@ -19,58 +40,37 @@ function_iife_catch: {
|
|||||||
expect_stdout: "0 1"
|
expect_stdout: "0 1"
|
||||||
}
|
}
|
||||||
|
|
||||||
function_iife_catch_ie8: {
|
|
||||||
mangle = {
|
|
||||||
ie8: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function f(n) {
|
|
||||||
!function() {
|
|
||||||
try {
|
|
||||||
throw 0;
|
|
||||||
} catch (n) {
|
|
||||||
var a = 1;
|
|
||||||
console.log(n, a);
|
|
||||||
}
|
|
||||||
}();
|
|
||||||
}
|
|
||||||
f();
|
|
||||||
}
|
|
||||||
expect_exact: "function f(c){!function(){try{throw 0}catch(c){var o=1;console.log(c,o)}}()}f();"
|
|
||||||
expect_stdout: "0 1"
|
|
||||||
}
|
|
||||||
|
|
||||||
function_catch_catch: {
|
function_catch_catch: {
|
||||||
mangle = {
|
mangle = {
|
||||||
ie8: false,
|
screw_ie8: true,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
var o = 0;
|
var o = 0;
|
||||||
function f() {
|
function f() {
|
||||||
try {
|
try {
|
||||||
throw 1;
|
throw 1;
|
||||||
} catch (c) {
|
} catch (c) {
|
||||||
try {
|
try {
|
||||||
throw 2;
|
throw 2;
|
||||||
} catch (o) {
|
} catch (o) {
|
||||||
var o = 3;
|
var o = 3;
|
||||||
console.log(o);
|
console.log(o);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
console.log(o);
|
console.log(o);
|
||||||
}
|
}
|
||||||
f();
|
f();
|
||||||
}
|
}
|
||||||
expect_exact: "var o=0;function f(){try{throw 1}catch(o){try{throw 2}catch(c){var c=3;console.log(c)}}console.log(c)}f();"
|
expect_exact: "var o=0;function f(){try{throw 1}catch(c){try{throw 2}catch(o){var o=3;console.log(o)}}console.log(o)}f();"
|
||||||
expect_stdout: [
|
expect_stdout: [
|
||||||
"3",
|
"3",
|
||||||
"undefined",
|
"undefined",
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
function_catch_catch_ie8: {
|
function_catch_catch_ie8: {
|
||||||
mangle = {
|
mangle = {
|
||||||
ie8: true,
|
screw_ie8: false,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
var o = 0;
|
var o = 0;
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ case_1: {
|
|||||||
input: {
|
input: {
|
||||||
var a = 0, b = 1;
|
var a = 0, b = 1;
|
||||||
switch (true) {
|
switch (true) {
|
||||||
case a || true:
|
case a, true:
|
||||||
default:
|
default:
|
||||||
b = 2;
|
b = 2;
|
||||||
case true:
|
case true:
|
||||||
@@ -17,7 +17,7 @@ case_1: {
|
|||||||
expect: {
|
expect: {
|
||||||
var a = 0, b = 1;
|
var a = 0, b = 1;
|
||||||
switch (true) {
|
switch (true) {
|
||||||
case a || true:
|
case a, true:
|
||||||
b = 2;
|
b = 2;
|
||||||
}
|
}
|
||||||
console.log(a, b);
|
console.log(a, b);
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
mangle_props: {
|
mangle_props: {
|
||||||
mangle = {
|
mangle_props = {}
|
||||||
properties: true,
|
|
||||||
}
|
|
||||||
input: {
|
input: {
|
||||||
var obj = {
|
var obj = {
|
||||||
undefined: 1,
|
undefined: 1,
|
||||||
@@ -56,12 +54,10 @@ mangle_props: {
|
|||||||
}
|
}
|
||||||
|
|
||||||
numeric_literal: {
|
numeric_literal: {
|
||||||
mangle = {
|
|
||||||
properties: true,
|
|
||||||
}
|
|
||||||
beautify = {
|
beautify = {
|
||||||
beautify: true,
|
beautify: true,
|
||||||
}
|
}
|
||||||
|
mangle_props = {}
|
||||||
input: {
|
input: {
|
||||||
var obj = {
|
var obj = {
|
||||||
0: 0,
|
0: 0,
|
||||||
@@ -84,19 +80,19 @@ numeric_literal: {
|
|||||||
' 0: 0,',
|
' 0: 0,',
|
||||||
' "-0": 1,',
|
' "-0": 1,',
|
||||||
' 42: 2,',
|
' 42: 2,',
|
||||||
' 42: 3,',
|
' "42": 3,',
|
||||||
' 37: 4,',
|
' 37: 4,',
|
||||||
' o: 5,',
|
' a: 5,',
|
||||||
' 1e42: 6,',
|
' 1e42: 6,',
|
||||||
' b: 7,',
|
' b: 7,',
|
||||||
' 1e42: 8',
|
' "1e+42": 8',
|
||||||
'};',
|
'};',
|
||||||
'',
|
'',
|
||||||
'console.log(obj[-0], obj[-""], obj["-0"]);',
|
'console.log(obj[-0], obj[-""], obj["-0"]);',
|
||||||
'',
|
'',
|
||||||
'console.log(obj[42], obj["42"]);',
|
'console.log(obj[42], obj["42"]);',
|
||||||
'',
|
'',
|
||||||
'console.log(obj[37], obj["o"], obj[37], obj["37"]);',
|
'console.log(obj[37], obj["a"], obj[37], obj["37"]);',
|
||||||
'',
|
'',
|
||||||
'console.log(obj[1e42], obj["b"], obj["1e+42"]);',
|
'console.log(obj[1e42], obj["b"], obj["1e+42"]);',
|
||||||
]
|
]
|
||||||
@@ -109,9 +105,7 @@ numeric_literal: {
|
|||||||
}
|
}
|
||||||
|
|
||||||
identifier: {
|
identifier: {
|
||||||
mangle = {
|
mangle_props = {}
|
||||||
properties: true,
|
|
||||||
}
|
|
||||||
input: {
|
input: {
|
||||||
var obj = {
|
var obj = {
|
||||||
abstract: 1,
|
abstract: 1,
|
||||||
@@ -179,32 +173,32 @@ identifier: {
|
|||||||
}
|
}
|
||||||
expect: {
|
expect: {
|
||||||
var obj = {
|
var obj = {
|
||||||
e: 1,
|
a: 1,
|
||||||
t: 2,
|
b: 2,
|
||||||
n: 3,
|
c: 3,
|
||||||
a: 4,
|
d: 4,
|
||||||
i: 5,
|
e: 5,
|
||||||
o: 6,
|
f: 6,
|
||||||
r: 7,
|
g: 7,
|
||||||
l: 8,
|
h: 8,
|
||||||
s: 9,
|
i: 9,
|
||||||
c: 10,
|
j: 10,
|
||||||
f: 11,
|
k: 11,
|
||||||
u: 12,
|
l: 12,
|
||||||
d: 13,
|
m: 13,
|
||||||
h: 14,
|
n: 14,
|
||||||
p: 15,
|
o: 15,
|
||||||
b: 16,
|
p: 16,
|
||||||
v: 17,
|
q: 17,
|
||||||
w: 18,
|
r: 18,
|
||||||
y: 19,
|
s: 19,
|
||||||
g: 20,
|
t: 20,
|
||||||
m: 21,
|
u: 21,
|
||||||
k: 22,
|
v: 22,
|
||||||
x: 23,
|
w: 23,
|
||||||
j: 24,
|
x: 24,
|
||||||
z: 25,
|
y: 25,
|
||||||
q: 26,
|
z: 26,
|
||||||
A: 27,
|
A: 27,
|
||||||
B: 28,
|
B: 28,
|
||||||
C: 29,
|
C: 29,
|
||||||
@@ -235,11 +229,11 @@ identifier: {
|
|||||||
Z: 54,
|
Z: 54,
|
||||||
$: 55,
|
$: 55,
|
||||||
_: 56,
|
_: 56,
|
||||||
ee: 57,
|
aa: 57,
|
||||||
te: 58,
|
ba: 58,
|
||||||
ne: 59,
|
ca: 59,
|
||||||
ae: 60,
|
da: 60,
|
||||||
ie: 61,
|
ea: 61,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
unary_prefix: {
|
unary_prefix: {
|
||||||
options = {
|
options = {
|
||||||
evaluate: true,
|
evaluate: true,
|
||||||
inline: true,
|
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
reduce_vars: true,
|
||||||
unused: true,
|
unused: true,
|
||||||
}
|
}
|
||||||
@@ -12,6 +10,10 @@ unary_prefix: {
|
|||||||
return x;
|
return x;
|
||||||
}());
|
}());
|
||||||
}
|
}
|
||||||
expect_exact: "console.log(-2/3);"
|
expect: {
|
||||||
|
console.log(function() {
|
||||||
|
return -2 / 3;
|
||||||
|
}());
|
||||||
|
}
|
||||||
expect_stdout: true
|
expect_stdout: true
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
iife_for: {
|
iife_for: {
|
||||||
options = {
|
options = {
|
||||||
negate_iife: true,
|
negate_iife: true,
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
reduce_vars: true,
|
||||||
toplevel: true,
|
toplevel: true,
|
||||||
unused: true,
|
unused: true,
|
||||||
@@ -27,7 +26,6 @@ iife_for: {
|
|||||||
iife_for_in: {
|
iife_for_in: {
|
||||||
options = {
|
options = {
|
||||||
negate_iife: true,
|
negate_iife: true,
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
reduce_vars: true,
|
||||||
toplevel: true,
|
toplevel: true,
|
||||||
unused: true,
|
unused: true,
|
||||||
@@ -53,7 +51,6 @@ iife_for_in: {
|
|||||||
iife_do: {
|
iife_do: {
|
||||||
options = {
|
options = {
|
||||||
negate_iife: true,
|
negate_iife: true,
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
reduce_vars: true,
|
||||||
toplevel: true,
|
toplevel: true,
|
||||||
unused: true,
|
unused: true,
|
||||||
@@ -83,7 +80,6 @@ iife_do: {
|
|||||||
iife_while: {
|
iife_while: {
|
||||||
options = {
|
options = {
|
||||||
negate_iife: true,
|
negate_iife: true,
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
reduce_vars: true,
|
||||||
toplevel: true,
|
toplevel: true,
|
||||||
unused: true,
|
unused: true,
|
||||||
@@ -125,8 +121,8 @@ label_do: {
|
|||||||
|
|
||||||
label_while: {
|
label_while: {
|
||||||
options = {
|
options = {
|
||||||
dead_code: true,
|
|
||||||
evaluate: true,
|
evaluate: true,
|
||||||
|
dead_code: true,
|
||||||
loops: true,
|
loops: true,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
@@ -134,5 +130,5 @@ label_while: {
|
|||||||
L: while (0) continue L;
|
L: while (0) continue L;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
expect_exact: "function f(){L:0}"
|
expect_exact: "function f(){L:;}"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
do_not_update_lhs: {
|
do_not_update_lhs: {
|
||||||
options = {
|
options = {
|
||||||
global_defs: {
|
global_defs: { DEBUG: 0 }
|
||||||
DEBUG: 0,
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
DEBUG++;
|
DEBUG++;
|
||||||
@@ -18,9 +16,7 @@ do_not_update_lhs: {
|
|||||||
|
|
||||||
do_update_rhs: {
|
do_update_rhs: {
|
||||||
options = {
|
options = {
|
||||||
global_defs: {
|
global_defs: { DEBUG: 0 }
|
||||||
DEBUG: 0,
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
MY_DEBUG = DEBUG;
|
MY_DEBUG = DEBUG;
|
||||||
@@ -39,10 +35,10 @@ mixed: {
|
|||||||
DEBUG: 0,
|
DEBUG: 0,
|
||||||
ENV: 1,
|
ENV: 1,
|
||||||
FOO: 2,
|
FOO: 2,
|
||||||
},
|
}
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
var ENV = 3;
|
const ENV = 3;
|
||||||
var FOO = 4;
|
var FOO = 4;
|
||||||
f(ENV * 10);
|
f(ENV * 10);
|
||||||
--FOO;
|
--FOO;
|
||||||
@@ -53,7 +49,7 @@ mixed: {
|
|||||||
x = DEBUG;
|
x = DEBUG;
|
||||||
}
|
}
|
||||||
expect: {
|
expect: {
|
||||||
var ENV = 3;
|
const ENV = 3;
|
||||||
var FOO = 4;
|
var FOO = 4;
|
||||||
f(10);
|
f(10);
|
||||||
--FOO;
|
--FOO;
|
||||||
@@ -64,11 +60,11 @@ mixed: {
|
|||||||
x = 0;
|
x = 0;
|
||||||
}
|
}
|
||||||
expect_warnings: [
|
expect_warnings: [
|
||||||
"WARN: global_defs ENV redefined [test/compress/issue-208.js:1,12]",
|
'WARN: global_defs ENV redefined [test/compress/issue-208.js:41,14]',
|
||||||
"WARN: global_defs FOO redefined [test/compress/issue-208.js:2,12]",
|
'WARN: global_defs FOO redefined [test/compress/issue-208.js:42,12]',
|
||||||
"WARN: global_defs FOO redefined [test/compress/issue-208.js:4,10]",
|
'WARN: global_defs FOO redefined [test/compress/issue-208.js:44,10]',
|
||||||
"WARN: global_defs DEBUG redefined [test/compress/issue-208.js:5,8]",
|
'WARN: global_defs DEBUG redefined [test/compress/issue-208.js:45,8]',
|
||||||
"WARN: global_defs DEBUG redefined [test/compress/issue-208.js:6,8]",
|
'WARN: global_defs DEBUG redefined [test/compress/issue-208.js:46,8]',
|
||||||
"WARN: global_defs DEBUG redefined [test/compress/issue-208.js:7,8]",
|
'WARN: global_defs DEBUG redefined [test/compress/issue-208.js:47,8]',
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
return_with_no_value_in_if_body: {
|
return_with_no_value_in_if_body: {
|
||||||
options = {
|
options = { conditionals: true };
|
||||||
conditionals: true,
|
|
||||||
}
|
|
||||||
input: {
|
input: {
|
||||||
function foo(bar) {
|
function foo(bar) {
|
||||||
if (bar) {
|
if (bar) {
|
||||||
|
|||||||
@@ -1,33 +0,0 @@
|
|||||||
insert_semicolon: {
|
|
||||||
beautify = {
|
|
||||||
beautify: true,
|
|
||||||
comments: "all",
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var a
|
|
||||||
/* foo */ var b
|
|
||||||
}
|
|
||||||
expect_exact: [
|
|
||||||
"var a",
|
|
||||||
"/* foo */;",
|
|
||||||
"",
|
|
||||||
"var b;",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
unary_postfix: {
|
|
||||||
beautify = {
|
|
||||||
beautify: true,
|
|
||||||
comments: "all",
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
a
|
|
||||||
/* foo */++b
|
|
||||||
}
|
|
||||||
expect_exact: [
|
|
||||||
"a",
|
|
||||||
"/* foo */;",
|
|
||||||
"",
|
|
||||||
"++b;",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,7 +1,5 @@
|
|||||||
issue_267: {
|
issue_267: {
|
||||||
options = {
|
options = { comparisons: true };
|
||||||
comparisons: true,
|
|
||||||
}
|
|
||||||
input: {
|
input: {
|
||||||
x = a % b / b * c * 2;
|
x = a % b / b * c * 2;
|
||||||
x = a % b * 2
|
x = a % b * 2
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
issue_269_1: {
|
issue_269_1: {
|
||||||
options = {
|
options = {unsafe: true};
|
||||||
unsafe: true,
|
|
||||||
}
|
|
||||||
input: {
|
input: {
|
||||||
f(
|
f(
|
||||||
String(x),
|
String(x),
|
||||||
@@ -22,9 +20,7 @@ issue_269_1: {
|
|||||||
}
|
}
|
||||||
|
|
||||||
issue_269_dangers: {
|
issue_269_dangers: {
|
||||||
options = {
|
options = {unsafe: true};
|
||||||
unsafe: true,
|
|
||||||
}
|
|
||||||
input: {
|
input: {
|
||||||
f(
|
f(
|
||||||
String(x, x),
|
String(x, x),
|
||||||
@@ -38,9 +34,7 @@ issue_269_dangers: {
|
|||||||
}
|
}
|
||||||
|
|
||||||
issue_269_in_scope: {
|
issue_269_in_scope: {
|
||||||
options = {
|
options = {unsafe: true};
|
||||||
unsafe: true,
|
|
||||||
}
|
|
||||||
input: {
|
input: {
|
||||||
var String, Number, Boolean;
|
var String, Number, Boolean;
|
||||||
f(
|
f(
|
||||||
@@ -56,9 +50,7 @@ issue_269_in_scope: {
|
|||||||
}
|
}
|
||||||
|
|
||||||
strings_concat: {
|
strings_concat: {
|
||||||
options = {
|
options = {unsafe: true};
|
||||||
unsafe: true,
|
|
||||||
}
|
|
||||||
input: {
|
input: {
|
||||||
f(
|
f(
|
||||||
String(x + 'str'),
|
String(x + 'str'),
|
||||||
@@ -72,27 +64,3 @@ strings_concat: {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
regexp: {
|
|
||||||
options = {
|
|
||||||
evaluate: true,
|
|
||||||
unsafe: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
RegExp("foo");
|
|
||||||
RegExp("bar", "ig");
|
|
||||||
RegExp(foo);
|
|
||||||
RegExp("bar", ig);
|
|
||||||
RegExp("should", "fail");
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
/foo/;
|
|
||||||
/bar/ig;
|
|
||||||
RegExp(foo);
|
|
||||||
RegExp("bar", ig);
|
|
||||||
RegExp("should", "fail");
|
|
||||||
}
|
|
||||||
expect_warnings: [
|
|
||||||
'WARN: Error converting RegExp("should","fail") [test/compress/issue-269.js:5,2]',
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,32 +0,0 @@
|
|||||||
warn: {
|
|
||||||
options = {
|
|
||||||
evaluate: true,
|
|
||||||
inline: true,
|
|
||||||
passes: 2,
|
|
||||||
properties: true,
|
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
toplevel: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function f() {
|
|
||||||
return g();
|
|
||||||
}
|
|
||||||
function g() {
|
|
||||||
return g["call" + "er"].arguments;
|
|
||||||
}
|
|
||||||
// 3
|
|
||||||
console.log(f(1, 2, 3).length);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
// TypeError: Cannot read property 'arguments' of null
|
|
||||||
console.log(function g() {
|
|
||||||
return g.caller.arguments;
|
|
||||||
}().length);
|
|
||||||
}
|
|
||||||
expect_warnings: [
|
|
||||||
"WARN: Function.prototype.caller not supported [test/compress/issue-2719.js:5,19]",
|
|
||||||
"WARN: Function.prototype.arguments not supported [test/compress/issue-2719.js:5,19]",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,498 +0,0 @@
|
|||||||
collapse_vars_constants: {
|
|
||||||
options = {
|
|
||||||
collapse_vars: true,
|
|
||||||
evaluate: true,
|
|
||||||
inline: true,
|
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function f1(x) {
|
|
||||||
var a = 4, b = x.prop, c = 5, d = sideeffect1(), e = sideeffect2();
|
|
||||||
return b + (function() { return d - a * e - c; })();
|
|
||||||
}
|
|
||||||
function f2(x) {
|
|
||||||
var a = 4, b = x.prop, c = 5, not_used = sideeffect1(), e = sideeffect2();
|
|
||||||
return b + (function() { return -a * e - c; })();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
function f1(x) {
|
|
||||||
var b = x.prop, d = sideeffect1(), e = sideeffect2();
|
|
||||||
return b + (d - 4 * e - 5);
|
|
||||||
}
|
|
||||||
function f2(x) {
|
|
||||||
var b = x.prop;
|
|
||||||
sideeffect1();
|
|
||||||
return b + (-4 * sideeffect2() - 5);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
modified: {
|
|
||||||
options = {
|
|
||||||
collapse_vars: true,
|
|
||||||
inline: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function f5(b) {
|
|
||||||
var a = function() {
|
|
||||||
return b;
|
|
||||||
}();
|
|
||||||
return b++ + a;
|
|
||||||
}
|
|
||||||
console.log(f5(1));
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
function f5(b) {
|
|
||||||
var a = b;
|
|
||||||
return b++ + a;
|
|
||||||
}
|
|
||||||
console.log(f5(1));
|
|
||||||
}
|
|
||||||
expect_stdout: "2"
|
|
||||||
}
|
|
||||||
|
|
||||||
ref_scope: {
|
|
||||||
options = {
|
|
||||||
collapse_vars: true,
|
|
||||||
inline: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
console.log(function() {
|
|
||||||
var a = 1, b = 2, c = 3;
|
|
||||||
var a = c++, b = b /= a;
|
|
||||||
return function() {
|
|
||||||
return a;
|
|
||||||
}() + b;
|
|
||||||
}());
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
console.log(function() {
|
|
||||||
var a = 1, b = 2, c = 3;
|
|
||||||
b = b /= a = c++;
|
|
||||||
return a + b;
|
|
||||||
}());
|
|
||||||
}
|
|
||||||
expect_stdout: true
|
|
||||||
}
|
|
||||||
|
|
||||||
safe_undefined: {
|
|
||||||
options = {
|
|
||||||
conditionals: true,
|
|
||||||
if_return: true,
|
|
||||||
inline: true,
|
|
||||||
unsafe: false,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
mangle = {}
|
|
||||||
input: {
|
|
||||||
var a, c;
|
|
||||||
console.log(function(undefined) {
|
|
||||||
return function() {
|
|
||||||
if (a)
|
|
||||||
return b;
|
|
||||||
if (c)
|
|
||||||
return d;
|
|
||||||
};
|
|
||||||
}(1)());
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var a, c;
|
|
||||||
console.log(a ? b : c ? d : void 0);
|
|
||||||
}
|
|
||||||
expect_stdout: true
|
|
||||||
}
|
|
||||||
|
|
||||||
negate_iife_3: {
|
|
||||||
options = {
|
|
||||||
conditionals: true,
|
|
||||||
expression: true,
|
|
||||||
inline: true,
|
|
||||||
negate_iife: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
(function(){ return t })() ? console.log(true) : console.log(false);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
t ? console.log(true) : console.log(false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
negate_iife_3_off: {
|
|
||||||
options = {
|
|
||||||
conditionals: true,
|
|
||||||
expression: true,
|
|
||||||
inline: true,
|
|
||||||
negate_iife: false,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
(function(){ return t })() ? console.log(true) : console.log(false);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
t ? console.log(true) : console.log(false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
negate_iife_4: {
|
|
||||||
options = {
|
|
||||||
conditionals: true,
|
|
||||||
expression: true,
|
|
||||||
inline: true,
|
|
||||||
negate_iife: true,
|
|
||||||
sequences: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
(function(){ return t })() ? console.log(true) : console.log(false);
|
|
||||||
(function(){
|
|
||||||
console.log("something");
|
|
||||||
})();
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
t ? console.log(true) : console.log(false), void console.log("something");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
negate_iife_5: {
|
|
||||||
options = {
|
|
||||||
conditionals: true,
|
|
||||||
expression: true,
|
|
||||||
inline: true,
|
|
||||||
negate_iife: true,
|
|
||||||
sequences: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
if ((function(){ return t })()) {
|
|
||||||
foo(true);
|
|
||||||
} else {
|
|
||||||
bar(false);
|
|
||||||
}
|
|
||||||
(function(){
|
|
||||||
console.log("something");
|
|
||||||
})();
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
t ? foo(true) : bar(false), void console.log("something");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
negate_iife_5_off: {
|
|
||||||
options = {
|
|
||||||
conditionals: true,
|
|
||||||
expression: true,
|
|
||||||
inline: true,
|
|
||||||
negate_iife: false,
|
|
||||||
sequences: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
if ((function(){ return t })()) {
|
|
||||||
foo(true);
|
|
||||||
} else {
|
|
||||||
bar(false);
|
|
||||||
}
|
|
||||||
(function(){
|
|
||||||
console.log("something");
|
|
||||||
})();
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
t ? foo(true) : bar(false), void console.log("something");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_1254_negate_iife_true: {
|
|
||||||
options = {
|
|
||||||
expression: true,
|
|
||||||
inline: true,
|
|
||||||
negate_iife: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
(function() {
|
|
||||||
return function() {
|
|
||||||
console.log('test')
|
|
||||||
};
|
|
||||||
})()();
|
|
||||||
}
|
|
||||||
expect_exact: 'void console.log("test");'
|
|
||||||
expect_stdout: true
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_1254_negate_iife_nested: {
|
|
||||||
options = {
|
|
||||||
expression: true,
|
|
||||||
inline: true,
|
|
||||||
negate_iife: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
(function() {
|
|
||||||
return function() {
|
|
||||||
console.log('test')
|
|
||||||
};
|
|
||||||
})()()()()();
|
|
||||||
}
|
|
||||||
expect_exact: '(void console.log("test"))()()();'
|
|
||||||
}
|
|
||||||
|
|
||||||
negate_iife_issue_1073: {
|
|
||||||
options = {
|
|
||||||
conditionals: true,
|
|
||||||
evaluate: true,
|
|
||||||
inline: true,
|
|
||||||
negate_iife: true,
|
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
sequences: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
new (function(a) {
|
|
||||||
return function Foo() {
|
|
||||||
this.x = a;
|
|
||||||
console.log(this);
|
|
||||||
};
|
|
||||||
}(7))();
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
new function() {
|
|
||||||
this.x = 7,
|
|
||||||
console.log(this);
|
|
||||||
}();
|
|
||||||
}
|
|
||||||
expect_stdout: true
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_1288_side_effects: {
|
|
||||||
options = {
|
|
||||||
conditionals: true,
|
|
||||||
evaluate: true,
|
|
||||||
inline: true,
|
|
||||||
negate_iife: true,
|
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
side_effects: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
if (w) ;
|
|
||||||
else {
|
|
||||||
(function f() {})();
|
|
||||||
}
|
|
||||||
if (!x) {
|
|
||||||
(function() {
|
|
||||||
x = {};
|
|
||||||
})();
|
|
||||||
}
|
|
||||||
if (y)
|
|
||||||
(function() {})();
|
|
||||||
else
|
|
||||||
(function(z) {
|
|
||||||
return z;
|
|
||||||
})(0);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
w;
|
|
||||||
x || (x = {});
|
|
||||||
y;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
inner_var_for_in_1: {
|
|
||||||
options = {
|
|
||||||
evaluate: true,
|
|
||||||
inline: true,
|
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
function f() {
|
|
||||||
var a = 1, b = 2;
|
|
||||||
for (b in (function() {
|
|
||||||
return x(a, b, c);
|
|
||||||
})()) {
|
|
||||||
var c = 3, d = 4;
|
|
||||||
x(a, b, c, d);
|
|
||||||
}
|
|
||||||
x(a, b, c, d);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
function f() {
|
|
||||||
var a = 1, b = 2;
|
|
||||||
for (b in x(1, b, c)) {
|
|
||||||
var c = 3, d = 4;
|
|
||||||
x(1, b, c, d);
|
|
||||||
}
|
|
||||||
x(1, b, c, d);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_1595_3: {
|
|
||||||
options = {
|
|
||||||
evaluate: true,
|
|
||||||
inline: true,
|
|
||||||
passes: 2,
|
|
||||||
reduce_funcs: true,
|
|
||||||
reduce_vars: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
(function f(a) {
|
|
||||||
return g(a + 1);
|
|
||||||
})(2);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
g(3);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
issue_1758: {
|
|
||||||
options = {
|
|
||||||
inline: true,
|
|
||||||
sequences: true,
|
|
||||||
side_effects: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
console.log(function(c) {
|
|
||||||
var undefined = 42;
|
|
||||||
return function() {
|
|
||||||
c--;
|
|
||||||
c--, c.toString();
|
|
||||||
return;
|
|
||||||
}();
|
|
||||||
}());
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
console.log(function(c) {
|
|
||||||
var undefined = 42;
|
|
||||||
return c--, c--, void c.toString();
|
|
||||||
}());
|
|
||||||
}
|
|
||||||
expect_stdout: "undefined"
|
|
||||||
}
|
|
||||||
wrap_iife: {
|
|
||||||
options = {
|
|
||||||
inline: true,
|
|
||||||
negate_iife: false,
|
|
||||||
}
|
|
||||||
beautify = {
|
|
||||||
wrap_iife: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
(function() {
|
|
||||||
return function() {
|
|
||||||
console.log('test')
|
|
||||||
};
|
|
||||||
})()();
|
|
||||||
}
|
|
||||||
expect_exact: 'void console.log("test");'
|
|
||||||
}
|
|
||||||
|
|
||||||
wrap_iife_in_expression: {
|
|
||||||
options = {
|
|
||||||
inline: true,
|
|
||||||
negate_iife: false,
|
|
||||||
}
|
|
||||||
beautify = {
|
|
||||||
wrap_iife: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
foo = (function() {
|
|
||||||
return bar();
|
|
||||||
})();
|
|
||||||
}
|
|
||||||
expect_exact: 'foo=bar();'
|
|
||||||
}
|
|
||||||
|
|
||||||
wrap_iife_in_return_call: {
|
|
||||||
options = {
|
|
||||||
inline: true,
|
|
||||||
negate_iife: false,
|
|
||||||
}
|
|
||||||
beautify = {
|
|
||||||
wrap_iife: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
(function() {
|
|
||||||
return (function() {
|
|
||||||
console.log('test')
|
|
||||||
})();
|
|
||||||
})()();
|
|
||||||
}
|
|
||||||
expect_exact: '(void console.log("test"))();'
|
|
||||||
}
|
|
||||||
|
|
||||||
pure_annotation_1: {
|
|
||||||
options = {
|
|
||||||
inline: true,
|
|
||||||
side_effects: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
/*@__PURE__*/(function() {
|
|
||||||
console.log("hello");
|
|
||||||
}());
|
|
||||||
}
|
|
||||||
expect_exact: ""
|
|
||||||
}
|
|
||||||
|
|
||||||
pure_annotation_2: {
|
|
||||||
options = {
|
|
||||||
collapse_vars: true,
|
|
||||||
inline: true,
|
|
||||||
side_effects: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
/*@__PURE__*/(function(n) {
|
|
||||||
console.log("hello", n);
|
|
||||||
}(42));
|
|
||||||
}
|
|
||||||
expect_exact: ""
|
|
||||||
}
|
|
||||||
|
|
||||||
drop_fargs: {
|
|
||||||
options = {
|
|
||||||
collapse_vars: true,
|
|
||||||
inline: true,
|
|
||||||
keep_fargs: false,
|
|
||||||
side_effects: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var a = 1;
|
|
||||||
!function(a_1) {
|
|
||||||
a++;
|
|
||||||
}(a++ + (a && a.var));
|
|
||||||
console.log(a);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var a = 1;
|
|
||||||
++a && a.var, a++;
|
|
||||||
console.log(a);
|
|
||||||
}
|
|
||||||
expect_stdout: "3"
|
|
||||||
}
|
|
||||||
|
|
||||||
keep_fargs: {
|
|
||||||
options = {
|
|
||||||
collapse_vars: true,
|
|
||||||
inline: true,
|
|
||||||
keep_fargs: true,
|
|
||||||
side_effects: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
var a = 1;
|
|
||||||
!function(a_1) {
|
|
||||||
a++;
|
|
||||||
}(a++ + (a && a.var));
|
|
||||||
console.log(a);
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
var a = 1;
|
|
||||||
++a && a.var, a++;
|
|
||||||
console.log(a);
|
|
||||||
}
|
|
||||||
expect_stdout: "3"
|
|
||||||
}
|
|
||||||
@@ -1,37 +0,0 @@
|
|||||||
comparison_with_undefined: {
|
|
||||||
options = {
|
|
||||||
comparisons: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
a == undefined;
|
|
||||||
a != undefined;
|
|
||||||
a === undefined;
|
|
||||||
a !== undefined;
|
|
||||||
|
|
||||||
undefined == a;
|
|
||||||
undefined != a;
|
|
||||||
undefined === a;
|
|
||||||
undefined !== a;
|
|
||||||
|
|
||||||
void 0 == a;
|
|
||||||
void 0 != a;
|
|
||||||
void 0 === a;
|
|
||||||
void 0 !== a;
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
null == a;
|
|
||||||
null != a;
|
|
||||||
void 0 === a;
|
|
||||||
void 0 !== a;
|
|
||||||
|
|
||||||
null == a;
|
|
||||||
null != a;
|
|
||||||
void 0 === a;
|
|
||||||
void 0 !== a;
|
|
||||||
|
|
||||||
null == a;
|
|
||||||
null != a;
|
|
||||||
void 0 === a;
|
|
||||||
void 0 !== a;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
inline_script_off: {
|
|
||||||
beautify = {
|
|
||||||
inline_script: false,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
console.log("</sCrIpT>");
|
|
||||||
}
|
|
||||||
expect_exact: 'console.log("</sCrIpT>");'
|
|
||||||
expect_stdout: "</sCrIpT>"
|
|
||||||
}
|
|
||||||
|
|
||||||
inline_script_on: {
|
|
||||||
beautify = {
|
|
||||||
inline_script: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
console.log("</sCrIpT>");
|
|
||||||
}
|
|
||||||
expect_exact: 'console.log("<\\/sCrIpT>");'
|
|
||||||
expect_stdout: "</sCrIpT>"
|
|
||||||
}
|
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
collapse: {
|
collapse: {
|
||||||
options = {
|
options = {
|
||||||
collapse_vars: true,
|
cascade: true,
|
||||||
sequences: true,
|
sequences: true,
|
||||||
side_effects: true,
|
side_effects: true,
|
||||||
unused: true,
|
unused: true,
|
||||||
@@ -41,7 +41,7 @@ collapse: {
|
|||||||
return void 0 !== ('function' === typeof b ? b() : b) && c();
|
return void 0 !== ('function' === typeof b ? b() : b) && c();
|
||||||
}
|
}
|
||||||
function f2(b) {
|
function f2(b) {
|
||||||
return 'stirng' == typeof ('function' === typeof (b = c()) ? b() : b) && d();
|
return b = c(), 'stirng' == typeof ('function' === typeof b ? b() : b) && d();
|
||||||
}
|
}
|
||||||
function f3(c) {
|
function f3(c) {
|
||||||
var a;
|
var a;
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
issue_44_valid_ast_1: {
|
issue_44_valid_ast_1: {
|
||||||
options = {
|
options = { unused: true };
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
input: {
|
||||||
function a(b) {
|
function a(b) {
|
||||||
for (var i = 0, e = b.qoo(); ; i++) {}
|
for (var i = 0, e = b.qoo(); ; i++) {}
|
||||||
@@ -16,9 +14,7 @@ issue_44_valid_ast_1: {
|
|||||||
}
|
}
|
||||||
|
|
||||||
issue_44_valid_ast_2: {
|
issue_44_valid_ast_2: {
|
||||||
options = {
|
options = { unused: true };
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
input: {
|
||||||
function a(b) {
|
function a(b) {
|
||||||
if (foo) for (var i = 0, e = b.qoo(); ; i++) {}
|
if (foo) for (var i = 0, e = b.qoo(); ; i++) {}
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
keep_continue: {
|
keep_continue: {
|
||||||
options = {
|
options = {
|
||||||
dead_code: true,
|
dead_code: true,
|
||||||
evaluate: true,
|
evaluate: true
|
||||||
}
|
};
|
||||||
input: {
|
input: {
|
||||||
while (a) {
|
while (a) {
|
||||||
if (b) {
|
if (b) {
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
NaN_and_Infinity_must_have_parens: {
|
NaN_and_Infinity_must_have_parens: {
|
||||||
options = {}
|
options = {};
|
||||||
input: {
|
input: {
|
||||||
Infinity.toString();
|
Infinity.toString();
|
||||||
NaN.toString();
|
NaN.toString();
|
||||||
@@ -11,7 +11,7 @@ NaN_and_Infinity_must_have_parens: {
|
|||||||
}
|
}
|
||||||
|
|
||||||
NaN_and_Infinity_should_not_be_replaced_when_they_are_redefined: {
|
NaN_and_Infinity_should_not_be_replaced_when_they_are_redefined: {
|
||||||
options = {}
|
options = {};
|
||||||
input: {
|
input: {
|
||||||
var Infinity, NaN;
|
var Infinity, NaN;
|
||||||
Infinity.toString();
|
Infinity.toString();
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
issue_611: {
|
issue_611: {
|
||||||
options = {
|
options = {
|
||||||
sequences: true,
|
sequences: true,
|
||||||
side_effects: true,
|
side_effects: true
|
||||||
}
|
};
|
||||||
input: {
|
input: {
|
||||||
define(function() {
|
define(function() {
|
||||||
function fn() {}
|
function fn() {}
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
wrongly_optimized: {
|
wrongly_optimized: {
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
|
||||||
conditionals: true,
|
conditionals: true,
|
||||||
evaluate: true,
|
booleans: true,
|
||||||
}
|
evaluate: true
|
||||||
|
};
|
||||||
input: {
|
input: {
|
||||||
function func() {
|
function func() {
|
||||||
foo();
|
foo();
|
||||||
@@ -17,6 +17,6 @@ wrongly_optimized: {
|
|||||||
foo();
|
foo();
|
||||||
}
|
}
|
||||||
// TODO: optimize to `func(), bar()`
|
// TODO: optimize to `func(), bar()`
|
||||||
(func(), 1) && bar();
|
(func(), 0) || bar();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -28,12 +28,12 @@ cond_5: {
|
|||||||
|
|
||||||
dead_code_const_annotation_regex: {
|
dead_code_const_annotation_regex: {
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
booleans : true,
|
||||||
conditionals: true,
|
conditionals : true,
|
||||||
dead_code: true,
|
dead_code : true,
|
||||||
evaluate: true,
|
evaluate : true,
|
||||||
expression: true,
|
expression : true,
|
||||||
loops: true,
|
loops : true,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
var unused;
|
var unused;
|
||||||
@@ -82,8 +82,8 @@ drop_value: {
|
|||||||
|
|
||||||
wrongly_optimized: {
|
wrongly_optimized: {
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
|
||||||
conditionals: true,
|
conditionals: true,
|
||||||
|
booleans: true,
|
||||||
evaluate: true,
|
evaluate: true,
|
||||||
expression: true,
|
expression: true,
|
||||||
}
|
}
|
||||||
@@ -100,7 +100,7 @@ wrongly_optimized: {
|
|||||||
foo();
|
foo();
|
||||||
}
|
}
|
||||||
// TODO: optimize to `func(), bar()`
|
// TODO: optimize to `func(), bar()`
|
||||||
if (func(), 1) bar();
|
if (func(), !0) bar();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -159,7 +159,7 @@ negate_iife_4: {
|
|||||||
})();
|
})();
|
||||||
}
|
}
|
||||||
expect: {
|
expect: {
|
||||||
!function(){ return t }() ? console.log(false) : console.log(true), function(){
|
(function(){ return t })() ? console.log(true) : console.log(false), function(){
|
||||||
console.log("something");
|
console.log("something");
|
||||||
}();
|
}();
|
||||||
}
|
}
|
||||||
@@ -183,7 +183,7 @@ negate_iife_5: {
|
|||||||
})();
|
})();
|
||||||
}
|
}
|
||||||
expect: {
|
expect: {
|
||||||
!function(){ return t }() ? bar(false) : foo(true), function(){
|
(function(){ return t })() ? foo(true) : bar(false), function(){
|
||||||
console.log("something");
|
console.log("something");
|
||||||
}();
|
}();
|
||||||
}
|
}
|
||||||
@@ -195,7 +195,7 @@ negate_iife_5_off: {
|
|||||||
expression: true,
|
expression: true,
|
||||||
negate_iife: false,
|
negate_iife: false,
|
||||||
sequences: true,
|
sequences: true,
|
||||||
}
|
};
|
||||||
input: {
|
input: {
|
||||||
if ((function(){ return t })()) {
|
if ((function(){ return t })()) {
|
||||||
foo(true);
|
foo(true);
|
||||||
@@ -207,7 +207,7 @@ negate_iife_5_off: {
|
|||||||
})();
|
})();
|
||||||
}
|
}
|
||||||
expect: {
|
expect: {
|
||||||
!function(){ return t }() ? bar(false) : foo(true), function(){
|
(function(){ return t })() ? foo(true) : bar(false), function(){
|
||||||
console.log("something");
|
console.log("something");
|
||||||
}();
|
}();
|
||||||
}
|
}
|
||||||
@@ -248,9 +248,7 @@ issue_1254_negate_iife_nested: {
|
|||||||
conditional: {
|
conditional: {
|
||||||
options = {
|
options = {
|
||||||
expression: true,
|
expression: true,
|
||||||
pure_funcs: [
|
pure_funcs: [ "pure" ],
|
||||||
"pure"
|
|
||||||
],
|
|
||||||
side_effects: true,
|
side_effects: true,
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
|
|||||||
@@ -1,45 +1,37 @@
|
|||||||
dont_reuse_prop: {
|
dont_reuse_prop: {
|
||||||
mangle = {
|
mangle_props = {
|
||||||
properties: {
|
regex: /asd/
|
||||||
regex: /asd/,
|
};
|
||||||
},
|
|
||||||
}
|
|
||||||
input: {
|
input: {
|
||||||
"aaaaaaaaaabbbbb";
|
|
||||||
var obj = {};
|
var obj = {};
|
||||||
obj.a = 123;
|
obj.a = 123;
|
||||||
obj.asd = 256;
|
obj.asd = 256;
|
||||||
console.log(obj.a);
|
console.log(obj.a);
|
||||||
}
|
}
|
||||||
expect: {
|
expect: {
|
||||||
"aaaaaaaaaabbbbb";
|
|
||||||
var obj = {};
|
var obj = {};
|
||||||
obj.a = 123;
|
obj.a = 123;
|
||||||
obj.b = 256;
|
obj.b = 256;
|
||||||
console.log(obj.a);
|
console.log(obj.a);
|
||||||
}
|
}
|
||||||
expect_stdout: "123"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
unmangleable_props_should_always_be_reserved: {
|
unmangleable_props_should_always_be_reserved: {
|
||||||
mangle = {
|
mangle_props = {
|
||||||
properties: {
|
regex: /asd/
|
||||||
regex: /asd/,
|
};
|
||||||
},
|
|
||||||
}
|
|
||||||
input: {
|
input: {
|
||||||
"aaaaaaaaaabbbbb";
|
|
||||||
var obj = {};
|
var obj = {};
|
||||||
obj.asd = 256;
|
obj.asd = 256;
|
||||||
obj.a = 123;
|
obj.a = 123;
|
||||||
console.log(obj.a);
|
console.log(obj.a);
|
||||||
}
|
}
|
||||||
expect: {
|
expect: {
|
||||||
"aaaaaaaaaabbbbb";
|
|
||||||
var obj = {};
|
var obj = {};
|
||||||
obj.b = 256;
|
obj.b = 256;
|
||||||
obj.a = 123;
|
obj.a = 123;
|
||||||
console.log(obj.a);
|
console.log(obj.a);
|
||||||
}
|
}
|
||||||
expect_stdout: "123"
|
}
|
||||||
}
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
negate_booleans_1: {
|
negate_booleans_1: {
|
||||||
options = {
|
options = {
|
||||||
comparisons: true,
|
comparisons: true
|
||||||
}
|
};
|
||||||
input: {
|
input: {
|
||||||
var a = !a || !b || !c || !d || !e || !f;
|
var a = !a || !b || !c || !d || !e || !f;
|
||||||
}
|
}
|
||||||
@@ -12,8 +12,8 @@ negate_booleans_1: {
|
|||||||
|
|
||||||
negate_booleans_2: {
|
negate_booleans_2: {
|
||||||
options = {
|
options = {
|
||||||
comparisons: true,
|
comparisons: true
|
||||||
}
|
};
|
||||||
input: {
|
input: {
|
||||||
var match = !x && // should not touch this one
|
var match = !x && // should not touch this one
|
||||||
(!z || c) &&
|
(!z || c) &&
|
||||||
|
|||||||
@@ -1,31 +1,11 @@
|
|||||||
remove_sequence: {
|
|
||||||
options = {
|
|
||||||
side_effects: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
(0, 1, eval)();
|
|
||||||
(0, 1, logThis)();
|
|
||||||
(0, 1, _decorators.logThis)();
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
eval();
|
|
||||||
logThis();
|
|
||||||
(0, _decorators.logThis)();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
remove_redundant_sequence_items: {
|
remove_redundant_sequence_items: {
|
||||||
options = {
|
options = { side_effects: true };
|
||||||
side_effects: true,
|
|
||||||
}
|
|
||||||
input: {
|
input: {
|
||||||
"use strict";
|
|
||||||
(0, 1, eval)();
|
(0, 1, eval)();
|
||||||
(0, 1, logThis)();
|
(0, 1, logThis)();
|
||||||
(0, 1, _decorators.logThis)();
|
(0, 1, _decorators.logThis)();
|
||||||
}
|
}
|
||||||
expect: {
|
expect: {
|
||||||
"use strict";
|
|
||||||
(0, eval)();
|
(0, eval)();
|
||||||
logThis();
|
logThis();
|
||||||
(0, _decorators.logThis)();
|
(0, _decorators.logThis)();
|
||||||
@@ -33,17 +13,13 @@ remove_redundant_sequence_items: {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dont_remove_this_binding_sequence: {
|
dont_remove_this_binding_sequence: {
|
||||||
options = {
|
options = { side_effects: true };
|
||||||
side_effects: true,
|
|
||||||
}
|
|
||||||
input: {
|
input: {
|
||||||
"use strict";
|
|
||||||
(0, eval)();
|
(0, eval)();
|
||||||
(0, logThis)();
|
(0, logThis)();
|
||||||
(0, _decorators.logThis)();
|
(0, _decorators.logThis)();
|
||||||
}
|
}
|
||||||
expect: {
|
expect: {
|
||||||
"use strict";
|
|
||||||
(0, eval)();
|
(0, eval)();
|
||||||
logThis();
|
logThis();
|
||||||
(0, _decorators.logThis)();
|
(0, _decorators.logThis)();
|
||||||
|
|||||||
@@ -2,25 +2,26 @@ dont_mangle_arguments: {
|
|||||||
mangle = {
|
mangle = {
|
||||||
};
|
};
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
sequences : true,
|
||||||
comparisons: true,
|
properties : true,
|
||||||
conditionals: true,
|
dead_code : true,
|
||||||
dead_code: true,
|
drop_debugger : true,
|
||||||
drop_debugger: true,
|
conditionals : true,
|
||||||
evaluate: true,
|
comparisons : true,
|
||||||
hoist_funs: true,
|
evaluate : true,
|
||||||
hoist_vars: true,
|
booleans : true,
|
||||||
if_return: true,
|
loops : true,
|
||||||
join_vars: true,
|
unused : true,
|
||||||
keep_fargs: true,
|
hoist_funs : true,
|
||||||
keep_fnames: false,
|
keep_fargs : true,
|
||||||
loops: true,
|
keep_fnames : false,
|
||||||
negate_iife: false,
|
hoist_vars : true,
|
||||||
properties: true,
|
if_return : true,
|
||||||
sequences: true,
|
join_vars : true,
|
||||||
side_effects: true,
|
cascade : true,
|
||||||
unused: true,
|
side_effects : true,
|
||||||
}
|
negate_iife : false
|
||||||
|
};
|
||||||
input: {
|
input: {
|
||||||
(function(){
|
(function(){
|
||||||
var arguments = arguments, not_arguments = 9;
|
var arguments = arguments, not_arguments = 9;
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
keep_var_for_in: {
|
keep_var_for_in: {
|
||||||
options = {
|
options = {
|
||||||
hoist_vars: true,
|
hoist_vars: true,
|
||||||
unused: true,
|
unused: true
|
||||||
}
|
};
|
||||||
input: {
|
input: {
|
||||||
(function(obj){
|
(function(obj){
|
||||||
var foo = 5;
|
var foo = 5;
|
||||||
|
|||||||
@@ -1,11 +1,9 @@
|
|||||||
this_binding_conditionals: {
|
this_binding_conditionals: {
|
||||||
options = {
|
options = {
|
||||||
conditionals: true,
|
conditionals: true,
|
||||||
evaluate: true,
|
evaluate : true
|
||||||
side_effects: true,
|
};
|
||||||
}
|
|
||||||
input: {
|
input: {
|
||||||
"use strict";
|
|
||||||
(1 && a)();
|
(1 && a)();
|
||||||
(0 || a)();
|
(0 || a)();
|
||||||
(0 || 1 && a)();
|
(0 || 1 && a)();
|
||||||
@@ -27,7 +25,6 @@ this_binding_conditionals: {
|
|||||||
(1 ? eval : 0)();
|
(1 ? eval : 0)();
|
||||||
}
|
}
|
||||||
expect: {
|
expect: {
|
||||||
"use strict";
|
|
||||||
a();
|
a();
|
||||||
a();
|
a();
|
||||||
a();
|
a();
|
||||||
@@ -54,16 +51,13 @@ this_binding_collapse_vars: {
|
|||||||
options = {
|
options = {
|
||||||
collapse_vars: true,
|
collapse_vars: true,
|
||||||
toplevel: true,
|
toplevel: true,
|
||||||
unused: true,
|
};
|
||||||
}
|
|
||||||
input: {
|
input: {
|
||||||
"use strict";
|
|
||||||
var c = a; c();
|
var c = a; c();
|
||||||
var d = a.b; d();
|
var d = a.b; d();
|
||||||
var e = eval; e();
|
var e = eval; e();
|
||||||
}
|
}
|
||||||
expect: {
|
expect: {
|
||||||
"use strict";
|
|
||||||
a();
|
a();
|
||||||
(0, a.b)();
|
(0, a.b)();
|
||||||
(0, eval)();
|
(0, eval)();
|
||||||
@@ -72,89 +66,32 @@ this_binding_collapse_vars: {
|
|||||||
|
|
||||||
this_binding_side_effects: {
|
this_binding_side_effects: {
|
||||||
options = {
|
options = {
|
||||||
side_effects: true,
|
side_effects : true
|
||||||
}
|
};
|
||||||
input: {
|
input: {
|
||||||
(function(foo) {
|
(function (foo) {
|
||||||
(0, foo)();
|
(0, foo)();
|
||||||
(0, foo.bar)();
|
(0, foo.bar)();
|
||||||
(0, eval)("console.log(foo);");
|
(0, eval)('console.log(foo);');
|
||||||
}());
|
}());
|
||||||
(function(foo) {
|
(function (foo) {
|
||||||
"use strict";
|
|
||||||
(0, foo)();
|
|
||||||
(0, foo.bar)();
|
|
||||||
(0, eval)("console.log(foo);");
|
|
||||||
}());
|
|
||||||
(function(foo) {
|
|
||||||
var eval = console;
|
var eval = console;
|
||||||
(0, foo)();
|
(0, foo)();
|
||||||
(0, foo.bar)();
|
(0, foo.bar)();
|
||||||
(0, eval)("console.log(foo);");
|
(0, eval)('console.log(foo);');
|
||||||
}());
|
}());
|
||||||
}
|
}
|
||||||
expect: {
|
expect: {
|
||||||
(function(foo) {
|
(function (foo) {
|
||||||
foo();
|
foo();
|
||||||
(0, foo.bar)();
|
(0, foo.bar)();
|
||||||
eval("console.log(foo);");
|
(0, eval)('console.log(foo);');
|
||||||
}());
|
}());
|
||||||
(function(foo) {
|
(function (foo) {
|
||||||
"use strict";
|
|
||||||
foo();
|
|
||||||
(0, foo.bar)();
|
|
||||||
(0, eval)("console.log(foo);");
|
|
||||||
}());
|
|
||||||
(function(foo) {
|
|
||||||
var eval = console;
|
var eval = console;
|
||||||
foo();
|
foo();
|
||||||
(0, foo.bar)();
|
(0, foo.bar)();
|
||||||
eval("console.log(foo);");
|
(0, eval)('console.log(foo);');
|
||||||
}());
|
}());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this_binding_sequences: {
|
|
||||||
options = {
|
|
||||||
sequences: true,
|
|
||||||
side_effects: true,
|
|
||||||
}
|
|
||||||
input: {
|
|
||||||
console.log(typeof function() {
|
|
||||||
return eval("this");
|
|
||||||
}());
|
|
||||||
console.log(typeof function() {
|
|
||||||
"use strict";
|
|
||||||
return eval("this");
|
|
||||||
}());
|
|
||||||
console.log(typeof function() {
|
|
||||||
return (0, eval)("this");
|
|
||||||
}());
|
|
||||||
console.log(typeof function() {
|
|
||||||
"use strict";
|
|
||||||
return (0, eval)("this");
|
|
||||||
}());
|
|
||||||
}
|
|
||||||
expect: {
|
|
||||||
console.log(typeof function() {
|
|
||||||
return eval("this");
|
|
||||||
}()),
|
|
||||||
console.log(typeof function() {
|
|
||||||
"use strict";
|
|
||||||
return eval("this");
|
|
||||||
}()),
|
|
||||||
console.log(typeof function() {
|
|
||||||
return eval("this");
|
|
||||||
}()),
|
|
||||||
console.log(typeof function() {
|
|
||||||
"use strict";
|
|
||||||
return (0, eval)("this");
|
|
||||||
}());
|
|
||||||
}
|
|
||||||
expect_stdout: [
|
|
||||||
"object",
|
|
||||||
"undefined",
|
|
||||||
"object",
|
|
||||||
"object",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,21 +1,9 @@
|
|||||||
eval_collapse_vars: {
|
eval_collapse_vars: {
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
collapse_vars:true, sequences:false, properties:true, dead_code:true, conditionals:true,
|
||||||
collapse_vars: true,
|
comparisons:true, evaluate:true, booleans:true, loops:true, unused:true, hoist_funs:true,
|
||||||
comparisons: true,
|
keep_fargs:true, if_return:true, join_vars:true, cascade:true, side_effects:true
|
||||||
conditionals: true,
|
};
|
||||||
dead_code: true,
|
|
||||||
evaluate: true,
|
|
||||||
hoist_funs: true,
|
|
||||||
if_return: true,
|
|
||||||
join_vars: true,
|
|
||||||
keep_fargs: true,
|
|
||||||
loops: true,
|
|
||||||
properties: true,
|
|
||||||
sequences: false,
|
|
||||||
side_effects: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
input: {
|
||||||
function f1() {
|
function f1() {
|
||||||
var e = 7;
|
var e = 7;
|
||||||
@@ -58,10 +46,7 @@ eval_collapse_vars: {
|
|||||||
}
|
}
|
||||||
|
|
||||||
eval_unused: {
|
eval_unused: {
|
||||||
options = {
|
options = { unused: true, keep_fargs: false };
|
||||||
keep_fargs: false,
|
|
||||||
unused: true,
|
|
||||||
}
|
|
||||||
input: {
|
input: {
|
||||||
function f1(a, eval, c, d, e) {
|
function f1(a, eval, c, d, e) {
|
||||||
return a('c') + eval;
|
return a('c') + eval;
|
||||||
|
|||||||
@@ -1,19 +1,8 @@
|
|||||||
issue979_reported: {
|
issue979_reported: {
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
sequences:true, properties:true, dead_code:true, conditionals:true,
|
||||||
comparisons: true,
|
comparisons:true, evaluate:true, booleans:true, loops:true, unused:true, hoist_funs:true,
|
||||||
conditionals: true,
|
keep_fargs:true, if_return:true, join_vars:true, cascade:true, side_effects:true
|
||||||
dead_code: true,
|
|
||||||
evaluate: true,
|
|
||||||
hoist_funs: true,
|
|
||||||
if_return: true,
|
|
||||||
join_vars: true,
|
|
||||||
keep_fargs: true,
|
|
||||||
loops: true,
|
|
||||||
properties: true,
|
|
||||||
sequences: true,
|
|
||||||
side_effects: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
function f1() {
|
function f1() {
|
||||||
@@ -41,20 +30,9 @@ issue979_reported: {
|
|||||||
|
|
||||||
issue979_test_negated_is_best: {
|
issue979_test_negated_is_best: {
|
||||||
options = {
|
options = {
|
||||||
booleans: true,
|
sequences:true, properties:true, dead_code:true, conditionals:true,
|
||||||
comparisons: true,
|
comparisons:true, evaluate:true, booleans:true, loops:true, unused:true, hoist_funs:true,
|
||||||
conditionals: true,
|
keep_fargs:true, if_return:true, join_vars:true, cascade:true, side_effects:true
|
||||||
dead_code: true,
|
|
||||||
evaluate: true,
|
|
||||||
hoist_funs: true,
|
|
||||||
if_return: true,
|
|
||||||
join_vars: true,
|
|
||||||
keep_fargs: true,
|
|
||||||
loops: true,
|
|
||||||
properties: true,
|
|
||||||
sequences: true,
|
|
||||||
side_effects: true,
|
|
||||||
unused: true,
|
|
||||||
}
|
}
|
||||||
input: {
|
input: {
|
||||||
function f3() {
|
function f3() {
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user