@putout/babel 5.2.11 → 5.2.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/bundle/index.js +43 -47
- package/bundle/metafile-esm.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
Pre-builts of [Babel 8](https://github.com/babel/babel/releases/tag/v8.0.0-rc.1).
|
|
7
7
|
|
|
8
8
|
Includes:
|
|
9
|
+
- [`fix: preserve trailing comma in optional call args`](https://github.com/babel/babel/pull/17781);
|
|
10
|
+
- [`remove deprecated default export from @babel/code-frame`](https://github.com/babel/babel/pull/17772);
|
|
9
11
|
- [`clean up unused error message`](https://github.com/babel/babel/pull/17764);
|
|
10
12
|
|
|
11
13
|
Usage
|
package/bundle/index.js
CHANGED
|
@@ -21095,7 +21095,7 @@ var jsx = (superClass) => class JSXParserMixin extends superClass {
|
|
|
21095
21095
|
|
|
21096
21096
|
do {
|
|
21097
21097
|
ch = this.input.charCodeAt(++this.state.pos);
|
|
21098
|
-
} while (isIdentifierChar2(ch) || ch === 45)
|
|
21098
|
+
} while (isIdentifierChar2(ch) || ch === 45);
|
|
21099
21099
|
this.finishToken(136, this.input.slice(start, this.state.pos));
|
|
21100
21100
|
}
|
|
21101
21101
|
|
|
@@ -26060,7 +26060,7 @@ var typescript = (superClass) => class TypeScriptParserMixin extends superClass
|
|
|
26060
26060
|
|
|
26061
26061
|
do {
|
|
26062
26062
|
types2.push(parseConstituentType());
|
|
26063
|
-
} while (this.eat(operator))
|
|
26063
|
+
} while (this.eat(operator));
|
|
26064
26064
|
if (types2.length === 1 && !hasLeadingOperator) {
|
|
26065
26065
|
return types2[0];
|
|
26066
26066
|
}
|
|
@@ -29337,7 +29337,7 @@ var ExpressionParser = class extends LValParser {
|
|
|
29337
29337
|
do {
|
|
29338
29338
|
base = this.parseSubscript(base, startLoc, noCalls, state);
|
|
29339
29339
|
state.maybeAsyncArrow = false;
|
|
29340
|
-
} while (!state.stop)
|
|
29340
|
+
} while (!state.stop);
|
|
29341
29341
|
|
|
29342
29342
|
return base;
|
|
29343
29343
|
}
|
|
@@ -30845,7 +30845,7 @@ var ExpressionParser = class extends LValParser {
|
|
|
30845
30845
|
if (!this.match(7)) {
|
|
30846
30846
|
do {
|
|
30847
30847
|
this.parseMaybeAssignAllowIn();
|
|
30848
|
-
} while (this.eat(8) && !this.match(7))
|
|
30848
|
+
} while (this.eat(8) && !this.match(7));
|
|
30849
30849
|
this.raise(Errors.ImportCallArity, node);
|
|
30850
30850
|
}
|
|
30851
30851
|
}
|
|
@@ -31427,7 +31427,7 @@ var StatementParser = class extends ExpressionParser {
|
|
|
31427
31427
|
|
|
31428
31428
|
do {
|
|
31429
31429
|
decorators.push(this.parseDecorator());
|
|
31430
|
-
} while (this.match(22))
|
|
31430
|
+
} while (this.match(22));
|
|
31431
31431
|
if (this.match(78)) {
|
|
31432
31432
|
if (!allowExport) {
|
|
31433
31433
|
this.unexpected();
|
|
@@ -33065,7 +33065,7 @@ var StatementParser = class extends ExpressionParser {
|
|
|
33065
33065
|
|
|
33066
33066
|
node.value = this.parseStringLiteral(this.state.value);
|
|
33067
33067
|
attrs.push(this.finishNode(node, 'ImportAttribute'));
|
|
33068
|
-
} while (this.eat(8))
|
|
33068
|
+
} while (this.eat(8));
|
|
33069
33069
|
this.expect(4);
|
|
33070
33070
|
return attrs;
|
|
33071
33071
|
}
|
|
@@ -34731,7 +34731,7 @@ function buildLiteralData(formatter, tpl, opts) {
|
|
|
34731
34731
|
|
|
34732
34732
|
do {
|
|
34733
34733
|
prefix2 = '$$' + prefix2;
|
|
34734
|
-
} while (raw.includes(prefix2))
|
|
34734
|
+
} while (raw.includes(prefix2));
|
|
34735
34735
|
const {names: names2, code: code2} = buildTemplateCode(tpl, prefix2);
|
|
34736
34736
|
|
|
34737
34737
|
const metadata = parseAndBuildMetadata(formatter, formatter.code(code2), {
|
|
@@ -34883,7 +34883,7 @@ function decodeInteger(reader, relative) {
|
|
|
34883
34883
|
integer = charToInt[c];
|
|
34884
34884
|
value |= (integer & 31) << shift;
|
|
34885
34885
|
shift += 5;
|
|
34886
|
-
} while (integer & 32)
|
|
34886
|
+
} while (integer & 32);
|
|
34887
34887
|
const shouldNegate = value & 1;
|
|
34888
34888
|
|
|
34889
34889
|
value >>>= 1;
|
|
@@ -34908,7 +34908,7 @@ function encodeInteger(builder, num, relative) {
|
|
|
34908
34908
|
clamped |= 32;
|
|
34909
34909
|
|
|
34910
34910
|
builder.write(intToChar[clamped]);
|
|
34911
|
-
} while (delta > 0)
|
|
34911
|
+
} while (delta > 0);
|
|
34912
34912
|
|
|
34913
34913
|
return num;
|
|
34914
34914
|
}
|
|
@@ -35051,7 +35051,7 @@ function decode(mappings) {
|
|
|
35051
35051
|
|
|
35052
35052
|
decoded.push(line);
|
|
35053
35053
|
reader.pos = semi + 1;
|
|
35054
|
-
} while (reader.pos <= length)
|
|
35054
|
+
} while (reader.pos <= length);
|
|
35055
35055
|
|
|
35056
35056
|
return decoded;
|
|
35057
35057
|
}
|
|
@@ -36075,7 +36075,7 @@ var Buffer2 = class {
|
|
|
36075
36075
|
this._last = char;
|
|
36076
36076
|
|
|
36077
36077
|
if (char === -1) {
|
|
36078
|
-
const indent = repeat
|
|
36078
|
+
const indent = repeat >= 64 ? this._indentChar.repeat(repeat) : spaceIndents[repeat / 2];
|
|
36079
36079
|
this._str += indent;
|
|
36080
36080
|
} else {
|
|
36081
36081
|
this._str += repeat > 1 ? String
|
|
@@ -36776,6 +36776,14 @@ function ConditionalExpression2(node) {
|
|
|
36776
36776
|
this.print(node.alternate);
|
|
36777
36777
|
}
|
|
36778
36778
|
|
|
36779
|
+
function _printExpressionArguments(node) {
|
|
36780
|
+
this.tokenChar(40);
|
|
36781
|
+
const oldNoLineTerminatorAfterNode = this.enterDelimited();
|
|
36782
|
+
this.printList(node.arguments, this.shouldPrintTrailingComma(')'), void 0, void 0, void 0, true);
|
|
36783
|
+
this._noLineTerminatorAfterNode = oldNoLineTerminatorAfterNode;
|
|
36784
|
+
this.rightParens(node);
|
|
36785
|
+
}
|
|
36786
|
+
|
|
36779
36787
|
function NewExpression2(node, parent) {
|
|
36780
36788
|
this.word('new');
|
|
36781
36789
|
this.space();
|
|
@@ -36791,11 +36799,7 @@ function NewExpression2(node, parent) {
|
|
|
36791
36799
|
return;
|
|
36792
36800
|
}
|
|
36793
36801
|
|
|
36794
|
-
|
|
36795
|
-
const oldNoLineTerminatorAfterNode = this.enterDelimited();
|
|
36796
|
-
this.printList(node.arguments, this.shouldPrintTrailingComma(')'), void 0, void 0, void 0, true);
|
|
36797
|
-
this._noLineTerminatorAfterNode = oldNoLineTerminatorAfterNode;
|
|
36798
|
-
this.rightParens(node);
|
|
36802
|
+
_printExpressionArguments.call(this, node);
|
|
36799
36803
|
}
|
|
36800
36804
|
|
|
36801
36805
|
function SequenceExpression2(node) {
|
|
@@ -36862,21 +36866,13 @@ function OptionalCallExpression2(node) {
|
|
|
36862
36866
|
}
|
|
36863
36867
|
|
|
36864
36868
|
this.print(node.typeArguments);
|
|
36865
|
-
|
|
36866
|
-
const oldNoLineTerminatorAfterNode = this.enterDelimited();
|
|
36867
|
-
this.printList(node.arguments, void 0, void 0, void 0, void 0, true);
|
|
36868
|
-
this._noLineTerminatorAfterNode = oldNoLineTerminatorAfterNode;
|
|
36869
|
-
this.rightParens(node);
|
|
36869
|
+
_printExpressionArguments.call(this, node);
|
|
36870
36870
|
}
|
|
36871
36871
|
|
|
36872
36872
|
function CallExpression2(node) {
|
|
36873
36873
|
this.print(node.callee);
|
|
36874
36874
|
this.print(node.typeArguments);
|
|
36875
|
-
|
|
36876
|
-
const oldNoLineTerminatorAfterNode = this.enterDelimited();
|
|
36877
|
-
this.printList(node.arguments, this.shouldPrintTrailingComma(')'), void 0, void 0, void 0, true);
|
|
36878
|
-
this._noLineTerminatorAfterNode = oldNoLineTerminatorAfterNode;
|
|
36879
|
-
this.rightParens(node);
|
|
36875
|
+
_printExpressionArguments.call(this, node);
|
|
36880
36876
|
}
|
|
36881
36877
|
|
|
36882
36878
|
function Import2() {
|
|
@@ -43338,7 +43334,7 @@ var Scope2 = class _Scope {
|
|
|
43338
43334
|
|
|
43339
43335
|
if (path?.isScope())
|
|
43340
43336
|
parent = path;
|
|
43341
|
-
} while (path && !parent)
|
|
43337
|
+
} while (path && !parent);
|
|
43342
43338
|
|
|
43343
43339
|
return parent?.scope;
|
|
43344
43340
|
}
|
|
@@ -43382,7 +43378,7 @@ var Scope2 = class _Scope {
|
|
|
43382
43378
|
uid2 += i + 1;
|
|
43383
43379
|
|
|
43384
43380
|
i++;
|
|
43385
|
-
} while (this.hasLabel(uid2) || this.hasBinding(uid2) || this.hasGlobal(uid2) || this.hasReference(uid2))
|
|
43381
|
+
} while (this.hasLabel(uid2) || this.hasBinding(uid2) || this.hasGlobal(uid2) || this.hasReference(uid2));
|
|
43386
43382
|
const program3 = this.getProgramParent();
|
|
43387
43383
|
program3.referencesSet.add(uid2);
|
|
43388
43384
|
program3.uidsSet.add(uid2);
|
|
@@ -43485,7 +43481,7 @@ var Scope2 = class _Scope {
|
|
|
43485
43481
|
kind: binding.kind,
|
|
43486
43482
|
});
|
|
43487
43483
|
}
|
|
43488
|
-
} while (scope2 = scope2.parent)
|
|
43484
|
+
} while (scope2 = scope2.parent);
|
|
43489
43485
|
console.log(sep);
|
|
43490
43486
|
}
|
|
43491
43487
|
|
|
@@ -43617,7 +43613,7 @@ var Scope2 = class _Scope {
|
|
|
43617
43613
|
do {
|
|
43618
43614
|
if (scope2.globals[name])
|
|
43619
43615
|
return true;
|
|
43620
|
-
} while (scope2 = scope2.parent)
|
|
43616
|
+
} while (scope2 = scope2.parent);
|
|
43621
43617
|
|
|
43622
43618
|
return false;
|
|
43623
43619
|
}
|
|
@@ -43757,7 +43753,7 @@ var Scope2 = class _Scope {
|
|
|
43757
43753
|
|
|
43758
43754
|
if (data != null)
|
|
43759
43755
|
return data;
|
|
43760
|
-
} while (scope2 = scope2.parent)
|
|
43756
|
+
} while (scope2 = scope2.parent);
|
|
43761
43757
|
}
|
|
43762
43758
|
|
|
43763
43759
|
removeData(key) {
|
|
@@ -43768,7 +43764,7 @@ var Scope2 = class _Scope {
|
|
|
43768
43764
|
|
|
43769
43765
|
if (data != null)
|
|
43770
43766
|
scope2.data[key] = null;
|
|
43771
|
-
} while (scope2 = scope2.parent)
|
|
43767
|
+
} while (scope2 = scope2.parent);
|
|
43772
43768
|
}
|
|
43773
43769
|
|
|
43774
43770
|
init() {
|
|
@@ -43791,7 +43787,7 @@ var Scope2 = class _Scope {
|
|
|
43791
43787
|
if (scope2.path.isProgram()) {
|
|
43792
43788
|
break;
|
|
43793
43789
|
}
|
|
43794
|
-
} while (scope2 = scope2.parent)
|
|
43790
|
+
} while (scope2 = scope2.parent);
|
|
43795
43791
|
const programParent = scope2;
|
|
43796
43792
|
|
|
43797
43793
|
const state = {
|
|
@@ -43907,7 +43903,7 @@ collectorVisitor]);
|
|
|
43907
43903
|
if (scope2.path.isProgram()) {
|
|
43908
43904
|
return scope2;
|
|
43909
43905
|
}
|
|
43910
|
-
} while (scope2 = scope2.parent)
|
|
43906
|
+
} while (scope2 = scope2.parent);
|
|
43911
43907
|
throw new Error('Couldn\'t find a Program');
|
|
43912
43908
|
}
|
|
43913
43909
|
|
|
@@ -43918,7 +43914,7 @@ collectorVisitor]);
|
|
|
43918
43914
|
if (scope2.path.isFunctionParent()) {
|
|
43919
43915
|
return scope2;
|
|
43920
43916
|
}
|
|
43921
|
-
} while (scope2 = scope2.parent)
|
|
43917
|
+
} while (scope2 = scope2.parent);
|
|
43922
43918
|
|
|
43923
43919
|
return null;
|
|
43924
43920
|
}
|
|
@@ -43930,7 +43926,7 @@ collectorVisitor]);
|
|
|
43930
43926
|
if (scope2.path.isBlockParent()) {
|
|
43931
43927
|
return scope2;
|
|
43932
43928
|
}
|
|
43933
|
-
} while (scope2 = scope2.parent)
|
|
43929
|
+
} while (scope2 = scope2.parent);
|
|
43934
43930
|
throw new Error('We couldn\'t find a BlockStatement, For, Switch, Function, Loop or Program...');
|
|
43935
43931
|
}
|
|
43936
43932
|
|
|
@@ -43941,7 +43937,7 @@ collectorVisitor]);
|
|
|
43941
43937
|
if (!scope2.path.isPattern()) {
|
|
43942
43938
|
return scope2.getBlockParent();
|
|
43943
43939
|
}
|
|
43944
|
-
} while (scope2 = scope2.parent.parent)
|
|
43940
|
+
} while (scope2 = scope2.parent.parent);
|
|
43945
43941
|
throw new Error('We couldn\'t find a BlockStatement, For, Switch, Function, Loop or Program...');
|
|
43946
43942
|
}
|
|
43947
43943
|
|
|
@@ -43957,7 +43953,7 @@ collectorVisitor]);
|
|
|
43957
43953
|
}
|
|
43958
43954
|
|
|
43959
43955
|
scope2 = scope2.parent;
|
|
43960
|
-
} while (scope2)
|
|
43956
|
+
} while (scope2);
|
|
43961
43957
|
|
|
43962
43958
|
return ids;
|
|
43963
43959
|
}
|
|
@@ -43983,7 +43979,7 @@ collectorVisitor]);
|
|
|
43983
43979
|
}
|
|
43984
43980
|
|
|
43985
43981
|
previousPath = scope2.path;
|
|
43986
|
-
} while (scope2 = scope2.parent)
|
|
43982
|
+
} while (scope2 = scope2.parent);
|
|
43987
43983
|
}
|
|
43988
43984
|
|
|
43989
43985
|
getOwnBinding(name) {
|
|
@@ -44029,7 +44025,7 @@ collectorVisitor]);
|
|
|
44029
44025
|
if (scope2.hasOwnBinding(name)) {
|
|
44030
44026
|
return true;
|
|
44031
44027
|
}
|
|
44032
|
-
} while (scope2 = scope2.parent)
|
|
44028
|
+
} while (scope2 = scope2.parent);
|
|
44033
44029
|
if (!noUids && this.hasUid(name))
|
|
44034
44030
|
return true;
|
|
44035
44031
|
|
|
@@ -44144,7 +44140,7 @@ function find(callback) {
|
|
|
44144
44140
|
do {
|
|
44145
44141
|
if (callback(path))
|
|
44146
44142
|
return path;
|
|
44147
|
-
} while (path = path.parentPath)
|
|
44143
|
+
} while (path = path.parentPath);
|
|
44148
44144
|
|
|
44149
44145
|
return null;
|
|
44150
44146
|
}
|
|
@@ -44162,7 +44158,7 @@ function getStatementParent() {
|
|
|
44162
44158
|
} else {
|
|
44163
44159
|
path = path.parentPath;
|
|
44164
44160
|
}
|
|
44165
|
-
} while (path)
|
|
44161
|
+
} while (path);
|
|
44166
44162
|
if (path && (path.isProgram() || path.isFile())) {
|
|
44167
44163
|
throw new Error('File/Program node, we can\'t possibly find a statement parent to this');
|
|
44168
44164
|
}
|
|
@@ -44219,7 +44215,7 @@ function getDeepestCommonAncestorFrom(paths, filter) {
|
|
|
44219
44215
|
|
|
44220
44216
|
do {
|
|
44221
44217
|
ancestry.unshift(path);
|
|
44222
|
-
} while ((path = path.parentPath) && path !== this)
|
|
44218
|
+
} while ((path = path.parentPath) && path !== this);
|
|
44223
44219
|
if (ancestry.length < minDepth) {
|
|
44224
44220
|
minDepth = ancestry.length;
|
|
44225
44221
|
}
|
|
@@ -44258,7 +44254,7 @@ function getAncestry() {
|
|
|
44258
44254
|
|
|
44259
44255
|
do {
|
|
44260
44256
|
paths.push(path);
|
|
44261
|
-
} while (path = path.parentPath)
|
|
44257
|
+
} while (path = path.parentPath);
|
|
44262
44258
|
|
|
44263
44259
|
return paths;
|
|
44264
44260
|
}
|
|
@@ -46618,7 +46614,7 @@ var getScopeInformationVisitor = environmentVisitor({
|
|
|
46618
46614
|
if (curr.path.isFunction() && !curr.path.isArrowFunctionExpression()) {
|
|
46619
46615
|
break;
|
|
46620
46616
|
}
|
|
46621
|
-
} while (curr = curr.parent)
|
|
46617
|
+
} while (curr = curr.parent);
|
|
46622
46618
|
argumentsPaths.push(child);
|
|
46623
46619
|
},
|
|
46624
46620
|
MetaProperty(child, {newTargetPaths}) {
|
|
@@ -46880,7 +46876,7 @@ function isCompletionRecord(allowInsideFunction) {
|
|
|
46880
46876
|
if (Array.isArray(container) && path.key !== container.length - 1) {
|
|
46881
46877
|
return false;
|
|
46882
46878
|
}
|
|
46883
|
-
} while ((path = path.parentPath) && !path.isProgram() && !path.isDoExpression())
|
|
46879
|
+
} while ((path = path.parentPath) && !path.isProgram() && !path.isDoExpression());
|
|
46884
46880
|
|
|
46885
46881
|
return true;
|
|
46886
46882
|
}
|
|
@@ -47933,7 +47929,7 @@ var NodePath_Final = class NodePath {
|
|
|
47933
47929
|
key = `${path.listKey}[${key}]`;
|
|
47934
47930
|
|
|
47935
47931
|
parts.unshift(key);
|
|
47936
|
-
} while (path = path.parentPath)
|
|
47932
|
+
} while (path = path.parentPath);
|
|
47937
47933
|
|
|
47938
47934
|
return parts.join('.');
|
|
47939
47935
|
}
|
package/bundle/metafile-esm.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"inputs":{"../babel-babel/packages/babel-helper-validator-identifier/lib/index.js":{"bytes":13698,"imports":[],"format":"esm"},"../babel-babel/packages/babel-helper-string-parser/lib/index.js":{"bytes":7680,"imports":[],"format":"esm"},"../babel-babel/packages/babel-types/lib/index.js":{"bytes":352438,"imports":[{"path":"../babel-babel/packages/babel-helper-validator-identifier/lib/index.js","kind":"import-statement","original":"@babel/helper-validator-identifier"},{"path":"../babel-babel/packages/babel-helper-string-parser/lib/index.js","kind":"import-statement","original":"@babel/helper-string-parser"}],"format":"esm"},"../babel-babel/packages/babel-parser/lib/index.js":{"bytes":482916,"imports":[],"format":"esm"},"../babel-babel/packages/babel-code-frame/lib/common-BO7XIBW3.js":{"bytes":3594,"imports":[],"format":"esm"},"../babel-babel/node_modules/js-tokens/index.js":{"bytes":12672,"imports":[],"format":"esm"},"../babel-babel/packages/babel-code-frame/lib/index.js":{"bytes":
|
|
1
|
+
{"inputs":{"../babel-babel/packages/babel-helper-validator-identifier/lib/index.js":{"bytes":13698,"imports":[],"format":"esm"},"../babel-babel/packages/babel-helper-string-parser/lib/index.js":{"bytes":7680,"imports":[],"format":"esm"},"../babel-babel/packages/babel-types/lib/index.js":{"bytes":352438,"imports":[{"path":"../babel-babel/packages/babel-helper-validator-identifier/lib/index.js","kind":"import-statement","original":"@babel/helper-validator-identifier"},{"path":"../babel-babel/packages/babel-helper-string-parser/lib/index.js","kind":"import-statement","original":"@babel/helper-string-parser"}],"format":"esm"},"../babel-babel/packages/babel-parser/lib/index.js":{"bytes":482916,"imports":[],"format":"esm"},"../babel-babel/packages/babel-code-frame/lib/common-BO7XIBW3.js":{"bytes":3594,"imports":[],"format":"esm"},"../babel-babel/node_modules/js-tokens/index.js":{"bytes":12672,"imports":[],"format":"esm"},"../babel-babel/packages/babel-code-frame/lib/index.js":{"bytes":4080,"imports":[{"path":"../babel-babel/packages/babel-code-frame/lib/common-BO7XIBW3.js","kind":"import-statement","original":"./common-BO7XIBW3.js"},{"path":"util","kind":"import-statement","external":true},{"path":"../babel-babel/node_modules/js-tokens/index.js","kind":"import-statement","original":"js-tokens"},{"path":"../babel-babel/packages/babel-helper-validator-identifier/lib/index.js","kind":"import-statement","original":"@babel/helper-validator-identifier"}],"format":"esm"},"../babel-babel/packages/babel-template/lib/index.js":{"bytes":16571,"imports":[{"path":"../babel-babel/packages/babel-types/lib/index.js","kind":"import-statement","original":"@babel/types"},{"path":"../babel-babel/packages/babel-parser/lib/index.js","kind":"import-statement","original":"@babel/parser"},{"path":"../babel-babel/packages/babel-code-frame/lib/index.js","kind":"import-statement","original":"@babel/code-frame"}],"format":"esm"},"../babel-babel/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs":{"bytes":12869,"imports":[],"format":"esm"},"../babel-babel/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs":{"bytes":8609,"imports":[],"format":"esm"},"../babel-babel/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs":{"bytes":15571,"imports":[{"path":"../babel-babel/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs","kind":"import-statement","original":"@jridgewell/sourcemap-codec"},{"path":"../babel-babel/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs","kind":"import-statement","original":"@jridgewell/resolve-uri"}],"format":"esm"},"../babel-babel/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.mjs":{"bytes":7969,"imports":[{"path":"../babel-babel/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs","kind":"import-statement","original":"@jridgewell/sourcemap-codec"},{"path":"../babel-babel/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs","kind":"import-statement","original":"@jridgewell/trace-mapping"}],"format":"esm"},"../babel-babel/node_modules/jsesc/jsesc.js":{"bytes":8104,"imports":[],"format":"cjs"},"../babel-babel/packages/babel-generator/lib/index.js":{"bytes":128263,"imports":[{"path":"../babel-babel/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.mjs","kind":"import-statement","original":"@jridgewell/gen-mapping"},{"path":"../babel-babel/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs","kind":"import-statement","original":"@jridgewell/trace-mapping"},{"path":"../babel-babel/packages/babel-types/lib/index.js","kind":"import-statement","original":"@babel/types"},{"path":"../babel-babel/node_modules/jsesc/jsesc.js","kind":"import-statement","original":"jsesc"}],"format":"esm"},"../babel-babel/node_modules/obug/dist/core.js":{"bytes":3557,"imports":[],"format":"esm"},"../babel-babel/node_modules/obug/dist/node.js":{"bytes":3091,"imports":[{"path":"../babel-babel/node_modules/obug/dist/core.js","kind":"import-statement","original":"./core.js"},{"path":"tty","kind":"import-statement","external":true},{"path":"util","kind":"import-statement","external":true}],"format":"esm"},"../babel-babel/packages/babel-helper-globals/data/builtin-lower.json":{"bytes":203,"imports":[],"format":"esm","with":{"type":"json"}},"../babel-babel/packages/babel-helper-globals/data/builtin-upper.json":{"bytes":718,"imports":[],"format":"esm","with":{"type":"json"}},"../babel-babel/packages/babel-traverse/lib/index.js":{"bytes":152692,"imports":[{"path":"../babel-babel/node_modules/obug/dist/node.js","kind":"import-statement","original":"obug"},{"path":"../babel-babel/packages/babel-code-frame/lib/index.js","kind":"import-statement","original":"@babel/code-frame"},{"path":"../babel-babel/packages/babel-types/lib/index.js","kind":"import-statement","original":"@babel/types"},{"path":"../babel-babel/packages/babel-parser/lib/index.js","kind":"import-statement","original":"@babel/parser"},{"path":"../babel-babel/packages/babel-helper-globals/data/builtin-lower.json","kind":"import-statement","original":"@babel/helper-globals/data/builtin-lower.json","with":{"type":"json"}},{"path":"../babel-babel/packages/babel-helper-globals/data/builtin-upper.json","kind":"import-statement","original":"@babel/helper-globals/data/builtin-upper.json","with":{"type":"json"}},{"path":"../babel-babel/packages/babel-generator/lib/index.js","kind":"import-statement","original":"@babel/generator"},{"path":"../babel-babel/packages/babel-template/lib/index.js","kind":"import-statement","original":"@babel/template"}],"format":"esm"},"lib/index.js":{"bytes":300,"imports":[{"path":"../babel-babel/packages/babel-template/lib/index.js","kind":"import-statement","original":"@babel/template"},{"path":"../babel-babel/packages/babel-generator/lib/index.js","kind":"import-statement","original":"@babel/generator"},{"path":"../babel-babel/packages/babel-types/lib/index.js","kind":"import-statement","original":"@babel/types"},{"path":"../babel-babel/packages/babel-traverse/lib/index.js","kind":"import-statement","original":"@babel/traverse"},{"path":"../babel-babel/packages/babel-parser/lib/index.js","kind":"import-statement","original":"@babel/parser"},{"path":"../babel-babel/packages/babel-code-frame/lib/index.js","kind":"import-statement","original":"@babel/code-frame"}],"format":"esm"}},"outputs":{"bundle/index.js":{"imports":[{"path":"util","kind":"import-statement","external":true},{"path":"tty","kind":"import-statement","external":true},{"path":"util","kind":"import-statement","external":true}],"exports":["codeFrameColumns","generate","parse","parseExpression","template","tokTypes","traverse","types"],"entryPoint":"lib/index.js","inputs":{"../babel-babel/node_modules/jsesc/jsesc.js":{"bytesInOutput":8976},"../babel-babel/packages/babel-types/lib/index.js":{"bytesInOutput":383695},"../babel-babel/packages/babel-helper-validator-identifier/lib/index.js":{"bytesInOutput":13255},"../babel-babel/packages/babel-helper-string-parser/lib/index.js":{"bytesInOutput":7645},"../babel-babel/packages/babel-parser/lib/index.js":{"bytesInOutput":482696},"../babel-babel/packages/babel-code-frame/lib/common-BO7XIBW3.js":{"bytesInOutput":3540},"../babel-babel/packages/babel-code-frame/lib/index.js":{"bytesInOutput":3834},"../babel-babel/node_modules/js-tokens/index.js":{"bytesInOutput":14697},"../babel-babel/packages/babel-template/lib/index.js":{"bytesInOutput":16918},"../babel-babel/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs":{"bytesInOutput":4609},"../babel-babel/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs":{"bytesInOutput":4373},"../babel-babel/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs":{"bytesInOutput":5805},"../babel-babel/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.mjs":{"bytesInOutput":5767},"../babel-babel/packages/babel-generator/lib/index.js":{"bytesInOutput":129026},"lib/index.js":{"bytesInOutput":0},"../babel-babel/node_modules/obug/dist/core.js":{"bytesInOutput":3434},"../babel-babel/node_modules/obug/dist/node.js":{"bytesInOutput":2805},"../babel-babel/packages/babel-helper-globals/data/builtin-lower.json":{"bytesInOutput":232},"../babel-babel/packages/babel-helper-globals/data/builtin-upper.json":{"bytesInOutput":747},"../babel-babel/packages/babel-traverse/lib/index.js":{"bytesInOutput":154489}},"bytes":1249464}}}
|