Skip to content

Commit 5fd7ab8

Browse files
authoredNov 15, 2022
fix(es/minifier): Preserve op of the op-assignments in seq inliner (#6428)
**Description:** **Related issue:** - Closes #6407.
1 parent 3c42789 commit 5fd7ab8

File tree

24 files changed

+275
-26
lines changed

24 files changed

+275
-26
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
{
2+
"minify": false,
3+
"jsc": {
4+
"parser": {
5+
"syntax": "ecmascript"
6+
},
7+
"transform": {
8+
"legacyDecorator": true,
9+
"react": {
10+
"runtime": "automatic"
11+
}
12+
},
13+
"target": "es2022",
14+
"loose": false,
15+
"externalHelpers": true,
16+
"minify": {
17+
"compress": {
18+
"arguments": false,
19+
"arrows": true,
20+
"booleans": true,
21+
"booleans_as_integers": false,
22+
"collapse_vars": true,
23+
"comparisons": true,
24+
"computed_props": true,
25+
"conditionals": true,
26+
"dead_code": true,
27+
"directives": true,
28+
"drop_console": false,
29+
"drop_debugger": true,
30+
"evaluate": true,
31+
"expression": false,
32+
"hoist_funs": false,
33+
"hoist_props": true,
34+
"hoist_vars": false,
35+
"if_return": true,
36+
"join_vars": true,
37+
"keep_classnames": false,
38+
"keep_fargs": true,
39+
"keep_fnames": false,
40+
"keep_infinity": false,
41+
"loops": true,
42+
"negate_iife": true,
43+
"properties": true,
44+
"reduce_funcs": false,
45+
"reduce_vars": false,
46+
"side_effects": true,
47+
"switches": true,
48+
"typeofs": true,
49+
"unsafe": false,
50+
"unsafe_arrows": false,
51+
"unsafe_comps": false,
52+
"unsafe_Function": false,
53+
"unsafe_math": false,
54+
"unsafe_symbols": false,
55+
"unsafe_methods": false,
56+
"unsafe_proto": false,
57+
"unsafe_regexp": false,
58+
"unsafe_undefined": false,
59+
"unused": true,
60+
"const_to_let": true,
61+
"pristine_globals": true
62+
},
63+
"mangle": false
64+
}
65+
},
66+
"module": {
67+
"type": "es6"
68+
}
69+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
export default class Demo {
2+
static encode(value) {
3+
const ranges = [];
4+
let range = [];
5+
let retrString = A.encode(value);
6+
let bitField = '';
7+
value.forEach((curValue, i) => {
8+
bitField += B.encode(curValue);
9+
range.push(i);
10+
ranges.push(range);
11+
});
12+
retrString += '.';
13+
retrString += C.encode(ranges);
14+
return retrString;
15+
}
16+
}
17+
18+
console.log(Deno.encode())
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
export default class Demo {
2+
static encode(value) {
3+
let ranges = [], range = [], retrString = A.encode(value), bitField = '';
4+
return value.forEach((curValue, i)=>{
5+
bitField += B.encode(curValue), range.push(i), ranges.push(range);
6+
}), retrString += '.' + C.encode(ranges);
7+
}
8+
}
9+
console.log(Deno.encode());
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
//// [symbolType12.ts]
22
var s = Symbol.for("assign"), str = "";
3-
s *= 0, s /= s, s /= 0, s %= s, s %= 0, str += s = s + 0 + "", s -= s, s -= 0, s <<= s, s <<= 0, s >>= s, s >>= 0, s >>>= s, s >>>= 0, s &= s, s &= 0, s ^= s, s ^= 0, s |= s, s |= 0, str += s || str;
3+
s *= 0 * s, s /= s, s /= 0, s %= s, s %= 0, s += s + 0 + "", str += s, s -= s, s -= 0, s <<= s, s <<= 0, s >>= s, s >>= 0, s >>>= s, s >>>= 0, s &= s, s &= 0, s ^= s, s ^= 0, s |= s, s |= 0, str += s || str;

‎crates/swc_ecma_minifier/src/compress/optimize/sequences.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2305,7 +2305,7 @@ where
23052305
);
23062306
self.changed = true;
23072307

2308-
b.op = op!("=");
2308+
b.op = a_op;
23092309

23102310
let to = take_a!(true, true);
23112311

‎crates/swc_ecma_minifier/tests/benches-full/echarts.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -5298,7 +5298,7 @@
52985298
var width = data[i++], height = data[i++];
52995299
if (x1 = x0 + width, y1 = y0 + height, isStroke) {
53005300
if (containStroke(x0, y0, x1, y0, lineWidth, x, y) || containStroke(x1, y0, x1, y1, lineWidth, x, y) || containStroke(x1, y1, x0, y1, lineWidth, x, y) || containStroke(x0, y1, x0, y0, lineWidth, x, y)) return !0;
5301-
} else w = windingLine(x1, y0, x1, y1, x, y) + windingLine(x0, y1, x0, y0, x, y);
5301+
} else w += windingLine(x1, y0, x1, y1, x, y) + windingLine(x0, y1, x0, y0, x, y);
53025302
break;
53035303
case CMD$1.Z:
53045304
if (isStroke) {
@@ -34777,7 +34777,7 @@
3477734777
var blockMetaList = result1.meta, buttonContainer = document.createElement('div');
3477834778
buttonContainer.style.cssText = 'position:absolute;bottom:0;left:0;right:0;';
3477934779
var buttonStyle = "float:right;margin-right:20px;border:none;cursor:pointer;padding:2px 5px;font-size:12px;border-radius:3px", closeButton = document.createElement('div'), refreshButton = document.createElement('div');
34780-
buttonStyle = ';background-color:' + model.get('buttonColor') + ';color:' + model.get('buttonTextColor');
34780+
buttonStyle += ';background-color:' + model.get('buttonColor') + ';color:' + model.get('buttonTextColor');
3478134781
var self1 = this;
3478234782
function close() {
3478334783
container.removeChild(root), self1._dom = null;

‎crates/swc_ecma_minifier/tests/benches-full/moment.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -799,7 +799,7 @@
799799
getParsingFlags(config).invalidFormat = !0, config._d = new Date(NaN);
800800
return;
801801
}
802-
for(i = 0; i < config._f.length; i++)currentScore = 0, validFormatFound = !1, tempConfig = copyConfig({}, config), null != config._useUTC && (tempConfig._useUTC = config._useUTC), tempConfig._f = config._f[i], configFromStringAndFormat(tempConfig), isValid(tempConfig) && (validFormatFound = !0), currentScore = getParsingFlags(tempConfig).charsLeftOver + 10 * getParsingFlags(tempConfig).unusedTokens.length, getParsingFlags(tempConfig).score = currentScore, bestFormatIsValid ? currentScore < scoreToBeat && (scoreToBeat = currentScore, bestMoment = tempConfig) : (null == scoreToBeat || currentScore < scoreToBeat || validFormatFound) && (scoreToBeat = currentScore, bestMoment = tempConfig, validFormatFound && (bestFormatIsValid = !0));
802+
for(i = 0; i < config._f.length; i++)currentScore = 0, validFormatFound = !1, tempConfig = copyConfig({}, config), null != config._useUTC && (tempConfig._useUTC = config._useUTC), tempConfig._f = config._f[i], configFromStringAndFormat(tempConfig), isValid(tempConfig) && (validFormatFound = !0), currentScore += getParsingFlags(tempConfig).charsLeftOver + 10 * getParsingFlags(tempConfig).unusedTokens.length, getParsingFlags(tempConfig).score = currentScore, bestFormatIsValid ? currentScore < scoreToBeat && (scoreToBeat = currentScore, bestMoment = tempConfig) : (null == scoreToBeat || currentScore < scoreToBeat || validFormatFound) && (scoreToBeat = currentScore, bestMoment = tempConfig, validFormatFound && (bestFormatIsValid = !0));
803803
extend(config, bestMoment || tempConfig);
804804
}(config) : format ? configFromStringAndFormat(config) : isUndefined(input = (config1 = config)._i) ? config1._d = new Date(hooks.now()) : isDate(input) ? config1._d = new Date(input.valueOf()) : 'string' == typeof input ? function(config) {
805805
var matched = aspNetJsonRegex.exec(config._i);

‎crates/swc_ecma_minifier/tests/benches-full/terser.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1913,7 +1913,7 @@
19131913
for(var code = "return function AST_" + type + "(props){ if (props) { ", i = props.length; --i >= 0;)code += "this." + props[i] + " = props." + props[i] + ";";
19141914
const proto = base && Object.create(base.prototype);
19151915
(proto && proto.initialize || methods && methods.initialize) && (code += "this.initialize();");
1916-
var ctor = Function(code = "}this.flags = 0;}")();
1916+
var ctor = Function(code += "}this.flags = 0;}")();
19171917
if (proto && (ctor.prototype = proto, ctor.BASE = base), base && base.SUBCLASSES.push(ctor), ctor.prototype.CTOR = ctor, ctor.prototype.constructor = ctor, ctor.PROPS = props || null, ctor.SELF_PROPS = self_props, ctor.SUBCLASSES = [], type && (ctor.prototype.TYPE = ctor.TYPE = type), methods) for(i in methods)HOP(methods, i) && ("$" === i[0] ? ctor[i.substr(1)] = methods[i] : ctor.prototype[i] = methods[i]);
19181918
return ctor.DEFMETHOD = function(name, method) {
19191919
this.prototype[name] = method;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"arguments": false,
3+
"arrows": true,
4+
"booleans": true,
5+
"booleans_as_integers": false,
6+
"collapse_vars": true,
7+
"comparisons": true,
8+
"computed_props": true,
9+
"conditionals": true,
10+
"dead_code": true,
11+
"directives": true,
12+
"drop_console": false,
13+
"drop_debugger": true,
14+
"evaluate": true,
15+
"expression": false,
16+
"hoist_funs": false,
17+
"hoist_props": true,
18+
"hoist_vars": false,
19+
"if_return": true,
20+
"join_vars": true,
21+
"keep_classnames": false,
22+
"keep_fargs": true,
23+
"keep_fnames": false,
24+
"keep_infinity": false,
25+
"loops": true,
26+
"negate_iife": true,
27+
"properties": true,
28+
"reduce_funcs": false,
29+
"reduce_vars": false,
30+
"side_effects": true,
31+
"switches": true,
32+
"typeofs": true,
33+
"unsafe": false,
34+
"unsafe_arrows": false,
35+
"unsafe_comps": false,
36+
"unsafe_Function": false,
37+
"unsafe_math": false,
38+
"unsafe_symbols": false,
39+
"unsafe_methods": false,
40+
"unsafe_proto": false,
41+
"unsafe_regexp": false,
42+
"unsafe_undefined": false,
43+
"unused": true,
44+
"const_to_let": true,
45+
"pristine_globals": true
46+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
export default class Demo {
2+
static encode(value) {
3+
const ranges = [];
4+
let range = [];
5+
let retrString = A.encode(value);
6+
let bitField = '';
7+
value.forEach((curValue, i) => {
8+
bitField += B.encode(curValue);
9+
range.push(i);
10+
ranges.push(range);
11+
});
12+
retrString += '.';
13+
retrString += C.encode(ranges);
14+
return retrString;
15+
}
16+
}
17+
18+
console.log(Deno.encode())
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
export default class Demo {
2+
static encode(value) {
3+
const ranges = [];
4+
let range = [], retrString = A.encode(value), bitField = '';
5+
return value.forEach((curValue, i)=>{
6+
bitField += B.encode(curValue);
7+
range.push(i);
8+
ranges.push(range);
9+
}), retrString += '.' + C.encode(ranges);
10+
}
11+
}
12+
console.log(Deno.encode());

‎crates/swc_ecma_minifier/tests/fixture/issues/firebase-core/1/output.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1287,7 +1287,7 @@
12871287
d = !0;
12881288
}
12891289
d || (b1 = "", xa(c, function(c, d) {
1290-
b1 = d + ":" + c + "\r\n";
1290+
b1 += d + ":" + c + "\r\n";
12911291
}), c = b1, "string" == typeof a ? null != c && encodeURIComponent(String(c)) : R(a, b, c));
12921292
}
12931293
function Hd(a, b, c) {

‎crates/swc_ecma_minifier/tests/fixture/issues/firebase-firestore/1/output.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -838,7 +838,7 @@
838838
const e = t;
839839
if (null === e.A) {
840840
let t1 = e.path.canonicalString();
841-
null !== e.collectionGroup && (t1 += "|cg:" + e.collectionGroup), t1 = "|f:" + e.filters.map((t)=>t.field.canonicalString() + t.op.toString() + xt(t.value)).join(",") + "|ob:" + e.orderBy.map((t)=>t.field.canonicalString() + t.dir).join(","), At(e.limit) || (t1 = "|l:" + e.limit), e.startAt && (t1 = "|lb:" + ce(e.startAt)), e.endAt && (t1 = "|ub:" + ce(e.endAt)), e.A = t1;
841+
null !== e.collectionGroup && (t1 += "|cg:" + e.collectionGroup), t1 += "|f:" + e.filters.map((t)=>t.field.canonicalString() + t.op.toString() + xt(t.value)).join(",") + "|ob:" + e.orderBy.map((t)=>t.field.canonicalString() + t.dir).join(","), At(e.limit) || (t1 += "|l:" + e.limit), e.startAt && (t1 += "|lb:" + ce(e.startAt)), e.endAt && (t1 += "|ub:" + ce(e.endAt)), e.A = t1;
842842
}
843843
return e.A;
844844
}

‎crates/swc_ecma_minifier/tests/fixture/issues/moment/1/output.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -799,7 +799,7 @@
799799
getParsingFlags(config).invalidFormat = !0, config._d = new Date(NaN);
800800
return;
801801
}
802-
for(i = 0; i < config._f.length; i++)currentScore = 0, validFormatFound = !1, tempConfig = copyConfig({}, config), null != config._useUTC && (tempConfig._useUTC = config._useUTC), tempConfig._f = config._f[i], configFromStringAndFormat(tempConfig), isValid(tempConfig) && (validFormatFound = !0), currentScore = getParsingFlags(tempConfig).charsLeftOver + 10 * getParsingFlags(tempConfig).unusedTokens.length, getParsingFlags(tempConfig).score = currentScore, bestFormatIsValid ? currentScore < scoreToBeat && (scoreToBeat = currentScore, bestMoment = tempConfig) : (null == scoreToBeat || currentScore < scoreToBeat || validFormatFound) && (scoreToBeat = currentScore, bestMoment = tempConfig, validFormatFound && (bestFormatIsValid = !0));
802+
for(i = 0; i < config._f.length; i++)currentScore = 0, validFormatFound = !1, tempConfig = copyConfig({}, config), null != config._useUTC && (tempConfig._useUTC = config._useUTC), tempConfig._f = config._f[i], configFromStringAndFormat(tempConfig), isValid(tempConfig) && (validFormatFound = !0), currentScore += getParsingFlags(tempConfig).charsLeftOver + 10 * getParsingFlags(tempConfig).unusedTokens.length, getParsingFlags(tempConfig).score = currentScore, bestFormatIsValid ? currentScore < scoreToBeat && (scoreToBeat = currentScore, bestMoment = tempConfig) : (null == scoreToBeat || currentScore < scoreToBeat || validFormatFound) && (scoreToBeat = currentScore, bestMoment = tempConfig, validFormatFound && (bestFormatIsValid = !0));
803803
extend(config, bestMoment || tempConfig);
804804
}(config) : format ? configFromStringAndFormat(config) : isUndefined(input = (config1 = config)._i) ? config1._d = new Date(hooks.now()) : isDate(input) ? config1._d = new Date(input.valueOf()) : "string" == typeof input ? function(config) {
805805
var matched = aspNetJsonRegex.exec(config._i);

‎crates/swc_ecma_minifier/tests/fixture/next/33265/static/chunks/d6e1aeb5-38a8d7ae57119c23/output.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -9364,7 +9364,7 @@
93649364
pts: buffer[0].pts,
93659365
dts: buffer[0].dts
93669366
}; i < tagSize;)tag.data.set(buffer[0].data.subarray(0, tagSize - i), i), i += buffer[0].data.byteLength, bufferSize -= buffer[0].data.byteLength, buffer.shift();
9367-
frameStart = 10, 0x40 & tag.data[5] && (frameStart = 4 + parseSyncSafeInteger$1(tag.data.subarray(10, 14)), tagSize -= parseSyncSafeInteger$1(tag.data.subarray(16, 20)));
9367+
frameStart = 10, 0x40 & tag.data[5] && (frameStart += 4 + parseSyncSafeInteger$1(tag.data.subarray(10, 14)), tagSize -= parseSyncSafeInteger$1(tag.data.subarray(16, 20)));
93689368
do {
93699369
if ((frameSize = parseSyncSafeInteger$1(tag.data.subarray(frameStart + 4, frameStart + 8))) < 1) {
93709370
this.trigger("log", {
@@ -9380,7 +9380,7 @@
93809380
var d = frame.data, size = (0x01 & d[3]) << 30 | d[4] << 22 | d[5] << 14 | d[6] << 6 | d[7] >>> 2;
93819381
size *= 4, size += 0x03 & d[7], frame.timeStamp = size, void 0 === tag.pts && void 0 === tag.dts && (tag.pts = frame.timeStamp, tag.dts = frame.timeStamp), this.trigger("timestamp", frame);
93829382
}
9383-
tag.frames.push(frame), frameStart = 10 + frameSize;
9383+
tag.frames.push(frame), frameStart += 10 + frameSize;
93849384
}while (frameStart < tagSize)
93859385
this.trigger("data", tag);
93869386
}
@@ -9920,7 +9920,7 @@
99209920
},
99219921
parseAacTimestamp: function(packet) {
99229922
var frameStart, frameSize, frame;
9923-
frameStart = 10, 0x40 & packet[5] && (frameStart = 4 + parseSyncSafeInteger(packet.subarray(10, 14)));
9923+
frameStart = 10, 0x40 & packet[5] && (frameStart += 4 + parseSyncSafeInteger(packet.subarray(10, 14)));
99249924
do {
99259925
if ((frameSize = parseSyncSafeInteger(packet.subarray(frameStart + 4, frameStart + 8))) < 1) break;
99269926
if ("PRIV" === String.fromCharCode(packet[frameStart], packet[frameStart + 1], packet[frameStart + 2], packet[frameStart + 3])) {
@@ -9933,7 +9933,7 @@
99339933
break;
99349934
}
99359935
}
9936-
frameStart = 10 + frameSize;
9936+
frameStart += 10 + frameSize;
99379937
}while (frameStart < packet.byteLength)
99389938
return null;
99399939
}
@@ -10244,7 +10244,7 @@
1024410244
return ("00" + value.toString(16)).slice(-2);
1024510245
}
1024610246
}, parseType_1 = function(buffer) {
10247-
return String.fromCharCode(buffer[0]) + String.fromCharCode(buffer[1]) + String.fromCharCode(buffer[2]) + String.fromCharCode(buffer[3]);
10247+
return "" + (String.fromCharCode(buffer[0]) + String.fromCharCode(buffer[1]) + String.fromCharCode(buffer[2]) + String.fromCharCode(buffer[3]));
1024810248
}, toUnsigned$2 = bin.toUnsigned, findBox_1 = function findBox(data, path) {
1024910249
var i, size, type, end, subresults, results = [];
1025010250
if (!path.length) return null;

‎crates/swc_ecma_minifier/tests/fixture/next/react-pdf-renderer/output.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15868,7 +15868,7 @@
1586815868
i += "".concat(t[0], " and ").concat(t[1], " arguments");
1586915869
break;
1587015870
default:
15871-
i = t.slice(0, o - 1).join(", ") + ", and ".concat(t[o - 1], " arguments");
15871+
i += t.slice(0, o - 1).join(", ") + ", and ".concat(t[o - 1], " arguments");
1587215872
}
1587315873
return "".concat(i, " must be specified");
1587415874
}, TypeError), e.exports.codes = l;

‎crates/swc_ecma_minifier/tests/fixture/next/syncfusion/933-e9f9a6bf671b96fc/output.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -19185,7 +19185,7 @@
1918519185
}, Toolbar.prototype.itemWidthCal = function(items) {
1918619186
var style, _this = this, width = 0;
1918719187
return [].slice.call((0, ej2_base.td)('.' + CLS_ITEM, items)).forEach(function(el) {
19188-
(0, ej2_base.pn)(el) && (style = window.getComputedStyle(el), width = (_this.isVertical ? el.offsetHeight : el.offsetWidth) + parseFloat(_this.isVertical ? style.marginTop : style.marginRight) + parseFloat(_this.isVertical ? style.marginBottom : style.marginLeft));
19188+
(0, ej2_base.pn)(el) && (style = window.getComputedStyle(el), width += (_this.isVertical ? el.offsetHeight : el.offsetWidth) + parseFloat(_this.isVertical ? style.marginTop : style.marginRight) + parseFloat(_this.isVertical ? style.marginBottom : style.marginLeft));
1918919189
}), width;
1919019190
}, Toolbar.prototype.getScrollCntEle = function(innerItem) {
1919119191
var trgClass = this.isVertical ? '.e-vscroll-content' : '.e-hscroll-content';
@@ -23519,7 +23519,7 @@
2351923519
});
2352023520
}, ToolbarRenderer.prototype.renderColorPickerDropDown = function(args, item, colorPicker, defaultColor) {
2352123521
var range, _this = this, proxy = this, css = classes.i7 + ' ' + classes.Fs + (this.parent.inlineMode ? ' ' + classes.ZV : '');
23522-
css = ' ' + ('backgroundcolor' === item ? classes.Z8 : classes.UQ) + ' ' + this.parent.cssClass;
23522+
css += ' ' + ('backgroundcolor' === item ? classes.Z8 : classes.UQ) + ' ' + this.parent.cssClass;
2352323523
var content = proxy.parent.createElement('span', {
2352423524
className: classes.uN
2352523525
}), inlineEle = proxy.parent.createElement('span', {

1 commit comments

Comments
 (1)

github-actions[bot] commented on Nov 15, 2022

@github-actions[bot]

Benchmark

Benchmark suite Current: 5fd7ab8 Previous: 1dd8b3d Ratio
es/full/bugs-1 384386 ns/iter (± 27258) 359764 ns/iter (± 35638) 1.07
es/full/minify/libraries/antd 2157855976 ns/iter (± 154647760) 1859260645 ns/iter (± 50064656) 1.16
es/full/minify/libraries/d3 507326098 ns/iter (± 43450517) 407449725 ns/iter (± 22362328) 1.25
es/full/minify/libraries/echarts 1824283509 ns/iter (± 87224373) 1612858764 ns/iter (± 52492529) 1.13
es/full/minify/libraries/jquery 125674262 ns/iter (± 10270302) 100909663 ns/iter (± 11908356) 1.25
es/full/minify/libraries/lodash 161841571 ns/iter (± 23767299) 134324510 ns/iter (± 10291658) 1.20
es/full/minify/libraries/moment 68607780 ns/iter (± 9180227) 67175152 ns/iter (± 8010933) 1.02
es/full/minify/libraries/react 25933890 ns/iter (± 4050584) 21767308 ns/iter (± 633949) 1.19
es/full/minify/libraries/terser 350526660 ns/iter (± 27602752) 318945153 ns/iter (± 12126350) 1.10
es/full/minify/libraries/three 623627713 ns/iter (± 11338445) 575525366 ns/iter (± 33154379) 1.08
es/full/minify/libraries/typescript 3761569636 ns/iter (± 115227394) 3525404089 ns/iter (± 93756360) 1.07
es/full/minify/libraries/victory 911504195 ns/iter (± 73599321) 854009311 ns/iter (± 18508124) 1.07
es/full/minify/libraries/vue 185860561 ns/iter (± 21242771) 186769157 ns/iter (± 10795873) 1.00
es/full/codegen/es3 46380 ns/iter (± 14989) 35987 ns/iter (± 2947) 1.29
es/full/codegen/es5 40437 ns/iter (± 8242) 35271 ns/iter (± 2919) 1.15
es/full/codegen/es2015 39676 ns/iter (± 8266) 35398 ns/iter (± 2191) 1.12
es/full/codegen/es2016 37263 ns/iter (± 6019) 35354 ns/iter (± 3173) 1.05
es/full/codegen/es2017 40107 ns/iter (± 7901) 35284 ns/iter (± 2622) 1.14
es/full/codegen/es2018 38133 ns/iter (± 7170) 35578 ns/iter (± 4212) 1.07
es/full/codegen/es2019 40487 ns/iter (± 6505) 35800 ns/iter (± 3202) 1.13
es/full/codegen/es2020 42072 ns/iter (± 6483) 35466 ns/iter (± 3811) 1.19
es/full/all/es3 265106839 ns/iter (± 38190047) 217580563 ns/iter (± 21596484) 1.22
es/full/all/es5 244142811 ns/iter (± 32437808) 185495295 ns/iter (± 15440090) 1.32
es/full/all/es2015 192458130 ns/iter (± 34969575) 162503849 ns/iter (± 17551828) 1.18
es/full/all/es2016 198876122 ns/iter (± 26085312) 155546701 ns/iter (± 21213081) 1.28
es/full/all/es2017 195382082 ns/iter (± 25498989) 165784208 ns/iter (± 18397331) 1.18
es/full/all/es2018 188338284 ns/iter (± 37307217) 160782944 ns/iter (± 18813240) 1.17
es/full/all/es2019 188593759 ns/iter (± 26596396) 149664700 ns/iter (± 11898224) 1.26
es/full/all/es2020 173921773 ns/iter (± 27236630) 147589823 ns/iter (± 12281102) 1.18
es/full/parser 862147 ns/iter (± 109307) 752944 ns/iter (± 74353) 1.15
es/full/base/fixer 31531 ns/iter (± 4793) 27952 ns/iter (± 3623) 1.13
es/full/base/resolver_and_hygiene 110707 ns/iter (± 15719) 95506 ns/iter (± 8627) 1.16
serialization of ast node 248 ns/iter (± 51) 215 ns/iter (± 3) 1.15
serialization of serde 248 ns/iter (± 43) 228 ns/iter (± 24) 1.09

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.