refactor brackets to braces (#3005)
This commit is contained in:
@@ -294,10 +294,10 @@ issue_186_beautify_ie8: {
|
||||
]
|
||||
}
|
||||
|
||||
issue_186_bracketize: {
|
||||
issue_186_braces: {
|
||||
beautify = {
|
||||
beautify: false,
|
||||
bracketize: true,
|
||||
braces: true,
|
||||
ie8: false,
|
||||
}
|
||||
input: {
|
||||
@@ -314,10 +314,10 @@ issue_186_bracketize: {
|
||||
expect_exact: 'var x=3;if(foo()){do{do{alert(x)}while(--x)}while(x)}else{bar()}'
|
||||
}
|
||||
|
||||
issue_186_bracketize_ie8: {
|
||||
issue_186_braces_ie8: {
|
||||
beautify = {
|
||||
beautify: false,
|
||||
bracketize: true,
|
||||
braces: true,
|
||||
ie8: true,
|
||||
}
|
||||
input: {
|
||||
@@ -334,10 +334,10 @@ issue_186_bracketize_ie8: {
|
||||
expect_exact: 'var x=3;if(foo()){do{do{alert(x)}while(--x)}while(x)}else{bar()}'
|
||||
}
|
||||
|
||||
issue_186_beautify_bracketize: {
|
||||
issue_186_beautify_braces: {
|
||||
beautify = {
|
||||
beautify: true,
|
||||
bracketize: true,
|
||||
braces: true,
|
||||
ie8: false,
|
||||
}
|
||||
input: {
|
||||
@@ -366,10 +366,10 @@ issue_186_beautify_bracketize: {
|
||||
]
|
||||
}
|
||||
|
||||
issue_186_beautify_bracketize_ie8: {
|
||||
issue_186_beautify_braces_ie8: {
|
||||
beautify = {
|
||||
beautify: true,
|
||||
bracketize: true,
|
||||
braces: true,
|
||||
ie8: true,
|
||||
}
|
||||
input: {
|
||||
|
||||
@@ -164,13 +164,13 @@ describe("bin/uglifyjs", function () {
|
||||
done();
|
||||
});
|
||||
});
|
||||
it("Should work with `--beautify bracketize`", function (done) {
|
||||
var command = uglifyjscmd + ' test/input/issue-1482/input.js -b bracketize';
|
||||
it("Should work with `--beautify braces`", function (done) {
|
||||
var command = uglifyjscmd + ' test/input/issue-1482/input.js -b braces';
|
||||
|
||||
exec(command, function (err, stdout) {
|
||||
if (err) throw err;
|
||||
|
||||
assert.strictEqual(stdout, read("test/input/issue-1482/bracketize.js"));
|
||||
assert.strictEqual(stdout, read("test/input/issue-1482/braces.js"));
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
@@ -139,7 +139,7 @@ describe("Comment", function() {
|
||||
assert.strictEqual(result.code, code);
|
||||
});
|
||||
|
||||
it("Should retain comments within brackets", function() {
|
||||
it("Should retain comments within braces", function() {
|
||||
var code = [
|
||||
"{/* foo */}",
|
||||
"a({/* foo */});",
|
||||
|
||||
@@ -17,7 +17,7 @@ describe("test/benchmark.js", function() {
|
||||
this.timeout(10 * 60 * 1000);
|
||||
[
|
||||
"-b",
|
||||
"-b bracketize",
|
||||
"-b braces",
|
||||
"-m",
|
||||
"-mc passes=3",
|
||||
"-mc passes=3,toplevel",
|
||||
|
||||
@@ -11,7 +11,7 @@ function try_beautify(code) {
|
||||
mangle: false,
|
||||
output: {
|
||||
beautify: true,
|
||||
bracketize: true
|
||||
braces: true
|
||||
}
|
||||
});
|
||||
if (beautified.error) {
|
||||
|
||||
@@ -975,7 +975,7 @@ function try_beautify(code, result, printfn) {
|
||||
mangle: false,
|
||||
output: {
|
||||
beautify: true,
|
||||
bracketize: true,
|
||||
braces: true,
|
||||
},
|
||||
});
|
||||
if (beautified.error) {
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
"mangle": false,
|
||||
"output": {
|
||||
"beautify": true,
|
||||
"bracketize": true
|
||||
"braces": true
|
||||
},
|
||||
"rename": true
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user