@putout/babel 5.2.10 → 5.2.12
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 +1 -0
- package/bundle/index.js +54 -73
- package/bundle/metafile-esm.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
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
|
+
- [`remove deprecated default export from @babel/code-frame`](https://github.com/babel/babel/pull/17772);
|
|
9
10
|
- [`clean up unused error message`](https://github.com/babel/babel/pull/17764);
|
|
10
11
|
|
|
11
12
|
Usage
|
package/bundle/index.js
CHANGED
|
@@ -21792,10 +21792,9 @@ var CommentsParser = class extends BaseParser {
|
|
|
21792
21792
|
adjustInnerComments(node, node.members, commentWS);
|
|
21793
21793
|
break;
|
|
21794
21794
|
|
|
21795
|
-
default:
|
|
21795
|
+
default:
|
|
21796
21796
|
setInnerComments(node, comments);
|
|
21797
21797
|
}
|
|
21798
|
-
}
|
|
21799
21798
|
} else {
|
|
21800
21799
|
setInnerComments(node, comments);
|
|
21801
21800
|
}
|
|
@@ -24361,9 +24360,8 @@ var LValParser = class extends NodeUtils {
|
|
|
24361
24360
|
break;
|
|
24362
24361
|
}
|
|
24363
24362
|
|
|
24364
|
-
case 'SpreadElement':
|
|
24363
|
+
case 'SpreadElement':
|
|
24365
24364
|
throw new Error('Internal @babel/parser error (this is a bug, please report it). SpreadElement should be converted by .toAssignable\'s caller.');
|
|
24366
|
-
}
|
|
24367
24365
|
|
|
24368
24366
|
case 'ArrayExpression':
|
|
24369
24367
|
this.castNodeTo(node, 'ArrayPattern');
|
|
@@ -27221,7 +27219,7 @@ var typescript = (superClass) => class TypeScriptParserMixin extends superClass
|
|
|
27221
27219
|
parseStatementContent(flags, decorators) {
|
|
27222
27220
|
if (!this.state.containsEsc) {
|
|
27223
27221
|
switch(this.state.type) {
|
|
27224
|
-
case 71:
|
|
27222
|
+
case 71:
|
|
27225
27223
|
if (this.isLookaheadContextual('enum')) {
|
|
27226
27224
|
const node = this.startNode();
|
|
27227
27225
|
this.expect(71);
|
|
@@ -27231,10 +27229,9 @@ var typescript = (superClass) => class TypeScriptParserMixin extends superClass
|
|
|
27231
27229
|
}
|
|
27232
27230
|
|
|
27233
27231
|
break;
|
|
27234
|
-
}
|
|
27235
27232
|
|
|
27236
27233
|
case 120:
|
|
27237
|
-
case 121:
|
|
27234
|
+
case 121:
|
|
27238
27235
|
if (this.nextTokenIsIdentifierAndNotTSRelationalOperatorOnSameLine()) {
|
|
27239
27236
|
const token = this.state.type;
|
|
27240
27237
|
const node = this.startNode();
|
|
@@ -27255,7 +27252,6 @@ var typescript = (superClass) => class TypeScriptParserMixin extends superClass
|
|
|
27255
27252
|
}
|
|
27256
27253
|
|
|
27257
27254
|
break;
|
|
27258
|
-
}
|
|
27259
27255
|
|
|
27260
27256
|
case 122:
|
|
27261
27257
|
return this.tsParseEnumDeclaration(this.startNode());
|
|
@@ -27280,7 +27276,7 @@ var typescript = (superClass) => class TypeScriptParserMixin extends superClass
|
|
|
27280
27276
|
break;
|
|
27281
27277
|
}
|
|
27282
27278
|
|
|
27283
|
-
case 123:
|
|
27279
|
+
case 123:
|
|
27284
27280
|
if (this.nextTokenIsStringLiteralOnSameLine()) {
|
|
27285
27281
|
const node = this.startNode();
|
|
27286
27282
|
this.next();
|
|
@@ -27293,9 +27289,8 @@ var typescript = (superClass) => class TypeScriptParserMixin extends superClass
|
|
|
27293
27289
|
}
|
|
27294
27290
|
|
|
27295
27291
|
break;
|
|
27296
|
-
}
|
|
27297
27292
|
|
|
27298
|
-
case 124:
|
|
27293
|
+
case 124:
|
|
27299
27294
|
if (this.nextTokenIsIdentifierOnSameLine()) {
|
|
27300
27295
|
const node = this.startNode();
|
|
27301
27296
|
this.next();
|
|
@@ -27303,9 +27298,8 @@ var typescript = (superClass) => class TypeScriptParserMixin extends superClass
|
|
|
27303
27298
|
}
|
|
27304
27299
|
|
|
27305
27300
|
break;
|
|
27306
|
-
}
|
|
27307
27301
|
|
|
27308
|
-
case 126:
|
|
27302
|
+
case 126:
|
|
27309
27303
|
if (this.nextTokenIsIdentifierOnSameLine()) {
|
|
27310
27304
|
const node = this.startNode();
|
|
27311
27305
|
this.next();
|
|
@@ -27314,7 +27308,6 @@ var typescript = (superClass) => class TypeScriptParserMixin extends superClass
|
|
|
27314
27308
|
|
|
27315
27309
|
break;
|
|
27316
27310
|
}
|
|
27317
|
-
}
|
|
27318
27311
|
}
|
|
27319
27312
|
|
|
27320
27313
|
return super.parseStatementContent(flags, decorators);
|
|
@@ -29614,15 +29607,13 @@ var ExpressionParser = class extends LValParser {
|
|
|
29614
29607
|
this.next();
|
|
29615
29608
|
return this.finishNode(node, 'ThisExpression');
|
|
29616
29609
|
|
|
29617
|
-
case 86:
|
|
29610
|
+
case 86:
|
|
29618
29611
|
return this.parseDo(this.startNode(), false);
|
|
29619
|
-
}
|
|
29620
29612
|
|
|
29621
29613
|
case 52:
|
|
29622
|
-
case 27:
|
|
29614
|
+
case 27:
|
|
29623
29615
|
this.readRegexp();
|
|
29624
29616
|
return this.parseRegExpLiteral(this.state.value);
|
|
29625
|
-
}
|
|
29626
29617
|
|
|
29627
29618
|
case 131:
|
|
29628
29619
|
return this.parseNumericLiteral(this.state.value);
|
|
@@ -29647,13 +29638,11 @@ var ExpressionParser = class extends LValParser {
|
|
|
29647
29638
|
return this.parseParenAndDistinguishExpression(canBeArrow);
|
|
29648
29639
|
}
|
|
29649
29640
|
|
|
29650
|
-
case 0:
|
|
29641
|
+
case 0:
|
|
29651
29642
|
return this.parseArrayLike(1, refExpressionErrors);
|
|
29652
|
-
}
|
|
29653
29643
|
|
|
29654
|
-
case 2:
|
|
29644
|
+
case 2:
|
|
29655
29645
|
return this.parseObjectLike(4, false, refExpressionErrors);
|
|
29656
|
-
}
|
|
29657
29646
|
|
|
29658
29647
|
case 64:
|
|
29659
29648
|
return this.parseFunctionOrFunctionSent();
|
|
@@ -29684,25 +29673,21 @@ var ExpressionParser = class extends LValParser {
|
|
|
29684
29673
|
}
|
|
29685
29674
|
}
|
|
29686
29675
|
|
|
29687
|
-
case 134:
|
|
29676
|
+
case 134:
|
|
29688
29677
|
this.raise(Errors.PrivateInExpectedIn, this.state.startLoc, {
|
|
29689
29678
|
identifierName: this.state.value,
|
|
29690
29679
|
});
|
|
29691
29680
|
return this.parsePrivateName();
|
|
29692
|
-
}
|
|
29693
29681
|
|
|
29694
|
-
case 29:
|
|
29682
|
+
case 29:
|
|
29695
29683
|
return this.parseTopicReferenceThenEqualsSign(50, '%');
|
|
29696
|
-
}
|
|
29697
29684
|
|
|
29698
|
-
case 28:
|
|
29685
|
+
case 28:
|
|
29699
29686
|
return this.parseTopicReferenceThenEqualsSign(40, '^');
|
|
29700
|
-
}
|
|
29701
29687
|
|
|
29702
29688
|
case 33:
|
|
29703
|
-
case 34:
|
|
29689
|
+
case 34:
|
|
29704
29690
|
return this.parseTopicReference('hack');
|
|
29705
|
-
}
|
|
29706
29691
|
|
|
29707
29692
|
case 40:
|
|
29708
29693
|
case 50:
|
|
@@ -29809,11 +29794,10 @@ var ExpressionParser = class extends LValParser {
|
|
|
29809
29794
|
|
|
29810
29795
|
testTopicReferenceConfiguration(pipeProposal, startLoc, tokenType) {
|
|
29811
29796
|
switch(pipeProposal) {
|
|
29812
|
-
case 'hack':
|
|
29797
|
+
case 'hack':
|
|
29813
29798
|
return this.hasPlugin(['pipelineOperator', {
|
|
29814
29799
|
topicToken: tokenLabelName(tokenType),
|
|
29815
29800
|
}]);
|
|
29816
|
-
}
|
|
29817
29801
|
|
|
29818
29802
|
default:
|
|
29819
29803
|
throw this.raise(Errors.PipeTopicRequiresHackPipes, startLoc);
|
|
@@ -31341,11 +31325,10 @@ var StatementParser = class extends ExpressionParser {
|
|
|
31341
31325
|
}
|
|
31342
31326
|
}
|
|
31343
31327
|
|
|
31344
|
-
case 71:
|
|
31328
|
+
case 71:
|
|
31345
31329
|
if (!allowDeclaration) {
|
|
31346
31330
|
this.raise(Errors.UnexpectedLexicalDeclaration, this.state.startLoc);
|
|
31347
31331
|
}
|
|
31348
|
-
}
|
|
31349
31332
|
|
|
31350
31333
|
case 70: {
|
|
31351
31334
|
const kind = this.state.value;
|
|
@@ -31390,7 +31373,7 @@ var StatementParser = class extends ExpressionParser {
|
|
|
31390
31373
|
return result;
|
|
31391
31374
|
}
|
|
31392
31375
|
|
|
31393
|
-
default:
|
|
31376
|
+
default:
|
|
31394
31377
|
if (this.isAsyncFunction()) {
|
|
31395
31378
|
if (!allowDeclaration) {
|
|
31396
31379
|
this.raise(Errors.AsyncFunctionInSingleStatementContext, this.state.startLoc);
|
|
@@ -31400,7 +31383,6 @@ var StatementParser = class extends ExpressionParser {
|
|
|
31400
31383
|
return this.parseFunctionStatement(node, true, !allowDeclaration && allowFunctionDeclaration);
|
|
31401
31384
|
}
|
|
31402
31385
|
}
|
|
31403
|
-
}
|
|
31404
31386
|
|
|
31405
31387
|
const maybeName = this.state.value;
|
|
31406
31388
|
const expr = this.parseExpression();
|
|
@@ -31605,47 +31587,46 @@ var StatementParser = class extends ExpressionParser {
|
|
|
31605
31587
|
|
|
31606
31588
|
const startsWithLet = this.isContextual(96);
|
|
31607
31589
|
|
|
31608
|
-
|
|
31609
|
-
|
|
31610
|
-
|
|
31611
|
-
|
|
31590
|
+
const startsWithAwaitUsing = this.isAwaitUsing();
|
|
31591
|
+
const starsWithUsingDeclaration = startsWithAwaitUsing || this.isForUsing();
|
|
31592
|
+
const isLetOrUsing = startsWithLet && this.hasFollowingBindingAtom() || starsWithUsingDeclaration;
|
|
31593
|
+
|
|
31594
|
+
if (this.match(70) || this.match(71) || isLetOrUsing) {
|
|
31595
|
+
const initNode = this.startNode();
|
|
31596
|
+
let kind;
|
|
31612
31597
|
|
|
31613
|
-
if (
|
|
31614
|
-
|
|
31615
|
-
let kind;
|
|
31598
|
+
if (startsWithAwaitUsing) {
|
|
31599
|
+
kind = 'await using';
|
|
31616
31600
|
|
|
31617
|
-
if (
|
|
31618
|
-
|
|
31619
|
-
|
|
31620
|
-
if (!this.recordAwaitIfAllowed()) {
|
|
31621
|
-
this.raise(Errors.AwaitUsingNotInAsyncContext, this.state.startLoc);
|
|
31622
|
-
}
|
|
31623
|
-
|
|
31624
|
-
this.next();
|
|
31625
|
-
} else {
|
|
31626
|
-
kind = this.state.value;
|
|
31601
|
+
if (!this.recordAwaitIfAllowed()) {
|
|
31602
|
+
this.raise(Errors.AwaitUsingNotInAsyncContext, this.state.startLoc);
|
|
31627
31603
|
}
|
|
31628
31604
|
|
|
31629
31605
|
this.next();
|
|
31630
|
-
|
|
31631
|
-
|
|
31632
|
-
|
|
31633
|
-
|
|
31634
|
-
|
|
31635
|
-
|
|
31636
|
-
|
|
31637
|
-
|
|
31638
|
-
|
|
31639
|
-
|
|
31640
|
-
|
|
31641
|
-
|
|
31642
|
-
|
|
31643
|
-
|
|
31644
|
-
|
|
31645
|
-
|
|
31646
|
-
return this.parseFor(node, init2);
|
|
31606
|
+
} else {
|
|
31607
|
+
kind = this.state.value;
|
|
31608
|
+
}
|
|
31609
|
+
|
|
31610
|
+
this.next();
|
|
31611
|
+
this.parseVar(initNode, true, kind);
|
|
31612
|
+
const init2 = this.finishNode(initNode, 'VariableDeclaration');
|
|
31613
|
+
const isForIn = this.match(54);
|
|
31614
|
+
|
|
31615
|
+
if (isForIn && starsWithUsingDeclaration) {
|
|
31616
|
+
this.raise(Errors.ForInUsing, init2);
|
|
31617
|
+
}
|
|
31618
|
+
|
|
31619
|
+
if ((isForIn || this.isContextual(98)) && init2.declarations.length === 1) {
|
|
31620
|
+
return this.parseForIn(node, init2, awaitAt);
|
|
31647
31621
|
}
|
|
31622
|
+
|
|
31623
|
+
if (awaitAt !== null) {
|
|
31624
|
+
this.unexpected(awaitAt);
|
|
31625
|
+
}
|
|
31626
|
+
|
|
31627
|
+
return this.parseFor(node, init2);
|
|
31648
31628
|
}
|
|
31629
|
+
|
|
31649
31630
|
const startsWithAsync = this.isContextual(91);
|
|
31650
31631
|
const refExpressionErrors = new ExpressionErrors();
|
|
31651
31632
|
const init = this.parseExpression(true, refExpressionErrors);
|
|
@@ -33547,9 +33528,9 @@ ${frame}`;
|
|
|
33547
33528
|
}
|
|
33548
33529
|
|
|
33549
33530
|
// ../babel-babel/packages/babel-code-frame/lib/index.js
|
|
33550
|
-
import
|
|
33531
|
+
import * as util from 'util';
|
|
33551
33532
|
|
|
33552
|
-
|
|
33533
|
+
const {styleText = (a, b) => b} = util;// ../babel-babel/node_modules/js-tokens/index.js
|
|
33553
33534
|
var HashbangComment;
|
|
33554
33535
|
var Identifier2;
|
|
33555
33536
|
var JSXIdentifier2;
|
|
@@ -36094,7 +36075,7 @@ var Buffer2 = class {
|
|
|
36094
36075
|
this._last = char;
|
|
36095
36076
|
|
|
36096
36077
|
if (char === -1) {
|
|
36097
|
-
const indent = repeat
|
|
36078
|
+
const indent = repeat >= 64 ? this._indentChar.repeat(repeat) : spaceIndents[repeat / 2];
|
|
36098
36079
|
this._str += indent;
|
|
36099
36080
|
} else {
|
|
36100
36081
|
this._str += repeat > 1 ? String
|
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":128625,"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":129367},"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":1249805}}}
|