Internal slot properties (#7947)
* Support internalSlots to babel-types and babel-generator * Parsing support for internal slot properties * Print internal slots in babel-generator * Add whitespace before first internal slot property
This commit is contained in:
parent
8dcfabd0d7
commit
b396cdcbe5
@ -384,6 +384,7 @@ export function ObjectTypeAnnotation(node: Object) {
|
|||||||
const props = node.properties.concat(
|
const props = node.properties.concat(
|
||||||
node.callProperties || [],
|
node.callProperties || [],
|
||||||
node.indexers || [],
|
node.indexers || [],
|
||||||
|
node.internalSlots || [],
|
||||||
);
|
);
|
||||||
|
|
||||||
if (props.length) {
|
if (props.length) {
|
||||||
@ -413,6 +414,23 @@ export function ObjectTypeAnnotation(node: Object) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function ObjectTypeInternalSlot(node: Object) {
|
||||||
|
if (node.static) {
|
||||||
|
this.word("static");
|
||||||
|
this.space();
|
||||||
|
}
|
||||||
|
this.token("[");
|
||||||
|
this.token("[");
|
||||||
|
this.print(node.id, node);
|
||||||
|
this.token("]");
|
||||||
|
this.token("]");
|
||||||
|
if (!node.method) {
|
||||||
|
this.token(":");
|
||||||
|
this.space();
|
||||||
|
}
|
||||||
|
this.print(node.value, node);
|
||||||
|
}
|
||||||
|
|
||||||
export function ObjectTypeCallProperty(node: Object) {
|
export function ObjectTypeCallProperty(node: Object) {
|
||||||
if (node.static) {
|
if (node.static) {
|
||||||
this.word("static");
|
this.word("static");
|
||||||
|
|||||||
@ -209,6 +209,22 @@ nodes.ObjectTypeIndexer = function(node: Object, parent): ?WhitespaceObject {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nodes.ObjectTypeInternalSlot = function(
|
||||||
|
node: Object,
|
||||||
|
parent,
|
||||||
|
): ?WhitespaceObject {
|
||||||
|
if (
|
||||||
|
parent.internalSlots[0] === node &&
|
||||||
|
(!parent.properties || !parent.properties.length) &&
|
||||||
|
(!parent.callProperties || !parent.callProperties.length) &&
|
||||||
|
(!parent.indexers || !parent.indexers.length)
|
||||||
|
) {
|
||||||
|
return {
|
||||||
|
before: true,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns lists from node types that need whitespace.
|
* Returns lists from node types that need whitespace.
|
||||||
*/
|
*/
|
||||||
|
|||||||
6
packages/babel-generator/test/fixtures/flow/internal-slot/input.js
vendored
Normal file
6
packages/babel-generator/test/fixtures/flow/internal-slot/input.js
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
declare class C { static [[foo]]: T }
|
||||||
|
declare class C { [[foo]]: T }
|
||||||
|
interface T { [[foo]]: X }
|
||||||
|
interface T { [[foo]](): X }
|
||||||
|
type T = { [[foo]]: X }
|
||||||
|
type T = { [[foo]](): X }
|
||||||
18
packages/babel-generator/test/fixtures/flow/internal-slot/output.js
vendored
Normal file
18
packages/babel-generator/test/fixtures/flow/internal-slot/output.js
vendored
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
declare class C {
|
||||||
|
static [[foo]]: T
|
||||||
|
}
|
||||||
|
declare class C {
|
||||||
|
[[foo]]: T
|
||||||
|
}
|
||||||
|
interface T {
|
||||||
|
[[foo]]: X
|
||||||
|
}
|
||||||
|
interface T {
|
||||||
|
[[foo]]() => X
|
||||||
|
}
|
||||||
|
type T = {
|
||||||
|
[[foo]]: X
|
||||||
|
};
|
||||||
|
type T = {
|
||||||
|
[[foo]]() => X
|
||||||
|
};
|
||||||
@ -304,6 +304,7 @@ describe("programmatic generation", function() {
|
|||||||
[t.objectTypeProperty(t.identifier("bar"), t.stringTypeAnnotation())],
|
[t.objectTypeProperty(t.identifier("bar"), t.stringTypeAnnotation())],
|
||||||
null,
|
null,
|
||||||
null,
|
null,
|
||||||
|
null,
|
||||||
);
|
);
|
||||||
|
|
||||||
const output = generate(objectStatement).code;
|
const output = generate(objectStatement).code;
|
||||||
@ -317,6 +318,7 @@ describe("programmatic generation", function() {
|
|||||||
[t.objectTypeProperty(t.identifier("bar"), t.stringTypeAnnotation())],
|
[t.objectTypeProperty(t.identifier("bar"), t.stringTypeAnnotation())],
|
||||||
null,
|
null,
|
||||||
null,
|
null,
|
||||||
|
null,
|
||||||
true,
|
true,
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -336,6 +338,7 @@ describe("programmatic generation", function() {
|
|||||||
t.numberTypeAnnotation(),
|
t.numberTypeAnnotation(),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
null,
|
||||||
);
|
);
|
||||||
|
|
||||||
const output = generate(objectStatement).code;
|
const output = generate(objectStatement).code;
|
||||||
|
|||||||
@ -248,15 +248,22 @@ defineType("NumberTypeAnnotation", {
|
|||||||
});
|
});
|
||||||
|
|
||||||
defineType("ObjectTypeAnnotation", {
|
defineType("ObjectTypeAnnotation", {
|
||||||
visitor: ["properties", "indexers", "callProperties"],
|
visitor: ["properties", "indexers", "callProperties", "internalSlots"],
|
||||||
aliases: ["Flow", "FlowType"],
|
aliases: ["Flow", "FlowType"],
|
||||||
builder: ["properties", "indexers", "callProperties", "exact"],
|
builder: [
|
||||||
|
"properties",
|
||||||
|
"indexers",
|
||||||
|
"callProperties",
|
||||||
|
"internalSlots",
|
||||||
|
"exact",
|
||||||
|
],
|
||||||
fields: {
|
fields: {
|
||||||
properties: validate(
|
properties: validate(
|
||||||
arrayOfType(["ObjectTypeProperty", "ObjectTypeSpreadProperty"]),
|
arrayOfType(["ObjectTypeProperty", "ObjectTypeSpreadProperty"]),
|
||||||
),
|
),
|
||||||
indexers: validateOptional(arrayOfType("ObjectTypeIndexer")),
|
indexers: validateOptional(arrayOfType("ObjectTypeIndexer")),
|
||||||
callProperties: validateOptional(arrayOfType("ObjectTypeCallProperty")),
|
callProperties: validateOptional(arrayOfType("ObjectTypeCallProperty")),
|
||||||
|
internalSlots: validateOptional(arrayOfType("ObjectTypeInternalSlot")),
|
||||||
exact: {
|
exact: {
|
||||||
validate: assertValueType("boolean"),
|
validate: assertValueType("boolean"),
|
||||||
default: false,
|
default: false,
|
||||||
@ -264,6 +271,17 @@ defineType("ObjectTypeAnnotation", {
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
defineType("ObjectTypeInternalSlot", {
|
||||||
|
visitor: ["id", "value", "static", "method"],
|
||||||
|
aliases: ["Flow", "UserWhitespacable"],
|
||||||
|
fields: {
|
||||||
|
id: validateType("Identifier"),
|
||||||
|
value: validateType("FlowType"),
|
||||||
|
static: validate(assertValueType("boolean")),
|
||||||
|
method: validate(assertValueType("boolean")),
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
defineType("ObjectTypeCallProperty", {
|
defineType("ObjectTypeCallProperty", {
|
||||||
visitor: ["value"],
|
visitor: ["value"],
|
||||||
aliases: ["Flow", "UserWhitespacable"],
|
aliases: ["Flow", "UserWhitespacable"],
|
||||||
|
|||||||
@ -621,7 +621,7 @@ export default (superClass: Class<Parser>): Class<Parser> =>
|
|||||||
): N.FlowObjectTypeIndexer {
|
): N.FlowObjectTypeIndexer {
|
||||||
node.static = isStatic;
|
node.static = isStatic;
|
||||||
|
|
||||||
this.expect(tt.bracketL);
|
// Note: bracketL has already been consumed
|
||||||
if (this.lookahead().type === tt.colon) {
|
if (this.lookahead().type === tt.colon) {
|
||||||
node.id = this.flowParseObjectPropertyKey();
|
node.id = this.flowParseObjectPropertyKey();
|
||||||
node.key = this.flowParseTypeInitialiser();
|
node.key = this.flowParseTypeInitialiser();
|
||||||
@ -636,6 +636,27 @@ export default (superClass: Class<Parser>): Class<Parser> =>
|
|||||||
return this.finishNode(node, "ObjectTypeIndexer");
|
return this.finishNode(node, "ObjectTypeIndexer");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
flowParseObjectTypeInternalSlot(
|
||||||
|
node: N.FlowObjectTypeInternalSlot,
|
||||||
|
isStatic: boolean,
|
||||||
|
): N.FlowObjectTypeInternalSlot {
|
||||||
|
node.static = isStatic;
|
||||||
|
// Note: both bracketL have already been consumed
|
||||||
|
node.id = this.flowParseObjectPropertyKey();
|
||||||
|
this.expect(tt.bracketR);
|
||||||
|
this.expect(tt.bracketR);
|
||||||
|
if (this.isRelational("<") || this.match(tt.parenL)) {
|
||||||
|
node.method = true;
|
||||||
|
node.value = this.flowParseObjectTypeMethodish(
|
||||||
|
this.startNodeAt(node.start, node.loc.start),
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
node.method = false;
|
||||||
|
node.value = this.flowParseTypeInitialiser();
|
||||||
|
}
|
||||||
|
return this.finishNode(node, "ObjectTypeInternalSlot");
|
||||||
|
}
|
||||||
|
|
||||||
flowParseObjectTypeMethodish(
|
flowParseObjectTypeMethodish(
|
||||||
node: N.FlowFunctionTypeAnnotation,
|
node: N.FlowFunctionTypeAnnotation,
|
||||||
): N.FlowFunctionTypeAnnotation {
|
): N.FlowFunctionTypeAnnotation {
|
||||||
@ -689,6 +710,7 @@ export default (superClass: Class<Parser>): Class<Parser> =>
|
|||||||
nodeStart.callProperties = [];
|
nodeStart.callProperties = [];
|
||||||
nodeStart.properties = [];
|
nodeStart.properties = [];
|
||||||
nodeStart.indexers = [];
|
nodeStart.indexers = [];
|
||||||
|
nodeStart.internalSlots = [];
|
||||||
|
|
||||||
let endDelim;
|
let endDelim;
|
||||||
let exact;
|
let exact;
|
||||||
@ -720,10 +742,19 @@ export default (superClass: Class<Parser>): Class<Parser> =>
|
|||||||
|
|
||||||
const variance = this.flowParseVariance();
|
const variance = this.flowParseVariance();
|
||||||
|
|
||||||
if (this.match(tt.bracketL)) {
|
if (this.eat(tt.bracketL)) {
|
||||||
nodeStart.indexers.push(
|
if (this.eat(tt.bracketL)) {
|
||||||
this.flowParseObjectTypeIndexer(node, isStatic, variance),
|
if (variance) {
|
||||||
);
|
this.unexpected(variance.start);
|
||||||
|
}
|
||||||
|
nodeStart.internalSlots.push(
|
||||||
|
this.flowParseObjectTypeInternalSlot(node, isStatic),
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
nodeStart.indexers.push(
|
||||||
|
this.flowParseObjectTypeIndexer(node, isStatic, variance),
|
||||||
|
);
|
||||||
|
}
|
||||||
} else if (this.match(tt.parenL) || this.isRelational("<")) {
|
} else if (this.match(tt.parenL) || this.isRelational("<")) {
|
||||||
if (variance) {
|
if (variance) {
|
||||||
this.unexpected(variance.start);
|
this.unexpected(variance.start);
|
||||||
|
|||||||
@ -915,6 +915,7 @@ export type FlowInterfaceExtends = Node;
|
|||||||
export type FlowTypeAlias = Node;
|
export type FlowTypeAlias = Node;
|
||||||
export type FlowOpaqueType = Node;
|
export type FlowOpaqueType = Node;
|
||||||
export type FlowObjectTypeIndexer = Node;
|
export type FlowObjectTypeIndexer = Node;
|
||||||
|
export type FlowObjectTypeInternalSlot = Node;
|
||||||
export type FlowFunctionTypeAnnotation = Node;
|
export type FlowFunctionTypeAnnotation = Node;
|
||||||
export type FlowObjectTypeProperty = Node;
|
export type FlowObjectTypeProperty = Node;
|
||||||
export type FlowObjectTypeSpreadProperty = Node;
|
export type FlowObjectTypeSpreadProperty = Node;
|
||||||
|
|||||||
@ -154,6 +154,7 @@
|
|||||||
],
|
],
|
||||||
"properties": [],
|
"properties": [],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -154,6 +154,7 @@
|
|||||||
],
|
],
|
||||||
"properties": [],
|
"properties": [],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -305,6 +305,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -254,6 +254,7 @@
|
|||||||
],
|
],
|
||||||
"properties": [],
|
"properties": [],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -130,6 +130,7 @@
|
|||||||
],
|
],
|
||||||
"properties": [],
|
"properties": [],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -654,6 +654,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -151,6 +151,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -234,6 +234,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -234,6 +234,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -147,6 +147,7 @@
|
|||||||
"callProperties": [],
|
"callProperties": [],
|
||||||
"properties": [],
|
"properties": [],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -148,6 +148,7 @@
|
|||||||
"callProperties": [],
|
"callProperties": [],
|
||||||
"properties": [],
|
"properties": [],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -114,6 +114,7 @@
|
|||||||
"callProperties": [],
|
"callProperties": [],
|
||||||
"properties": [],
|
"properties": [],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -147,6 +147,7 @@
|
|||||||
"callProperties": [],
|
"callProperties": [],
|
||||||
"properties": [],
|
"properties": [],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -114,6 +114,7 @@
|
|||||||
"callProperties": [],
|
"callProperties": [],
|
||||||
"properties": [],
|
"properties": [],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -262,6 +262,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@ -94,6 +94,7 @@
|
|||||||
"callProperties": [],
|
"callProperties": [],
|
||||||
"properties": [],
|
"properties": [],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@ -145,6 +145,7 @@
|
|||||||
"callProperties": [],
|
"callProperties": [],
|
||||||
"properties": [],
|
"properties": [],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@ -145,6 +145,7 @@
|
|||||||
"callProperties": [],
|
"callProperties": [],
|
||||||
"properties": [],
|
"properties": [],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@ -145,6 +145,7 @@
|
|||||||
"callProperties": [],
|
"callProperties": [],
|
||||||
"properties": [],
|
"properties": [],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@ -143,6 +143,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -196,6 +196,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -189,6 +189,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -202,6 +202,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -145,6 +145,7 @@
|
|||||||
"variance": null
|
"variance": null
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -130,6 +130,7 @@
|
|||||||
],
|
],
|
||||||
"properties": [],
|
"properties": [],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -196,6 +196,7 @@
|
|||||||
"callProperties": [],
|
"callProperties": [],
|
||||||
"properties": [],
|
"properties": [],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -241,6 +241,7 @@
|
|||||||
"variance": null
|
"variance": null
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -133,6 +133,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -292,6 +293,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -178,6 +178,7 @@
|
|||||||
"callProperties": [],
|
"callProperties": [],
|
||||||
"properties": [],
|
"properties": [],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -237,6 +237,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -130,6 +130,7 @@
|
|||||||
],
|
],
|
||||||
"properties": [],
|
"properties": [],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -235,6 +236,7 @@
|
|||||||
],
|
],
|
||||||
"properties": [],
|
"properties": [],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -265,6 +265,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -80,6 +80,7 @@
|
|||||||
"callProperties": [],
|
"callProperties": [],
|
||||||
"properties": [],
|
"properties": [],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -249,6 +249,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -420,6 +420,7 @@
|
|||||||
"callProperties": [],
|
"callProperties": [],
|
||||||
"properties": [],
|
"properties": [],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -80,6 +80,7 @@
|
|||||||
"callProperties": [],
|
"callProperties": [],
|
||||||
"properties": [],
|
"properties": [],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -235,6 +235,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -114,6 +114,7 @@
|
|||||||
"callProperties": [],
|
"callProperties": [],
|
||||||
"properties": [],
|
"properties": [],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -278,6 +278,7 @@
|
|||||||
"callProperties": [],
|
"callProperties": [],
|
||||||
"properties": [],
|
"properties": [],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -151,6 +151,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -198,6 +198,7 @@
|
|||||||
"variance": null
|
"variance": null
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -80,6 +80,7 @@
|
|||||||
"callProperties": [],
|
"callProperties": [],
|
||||||
"properties": [],
|
"properties": [],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -133,6 +133,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
1
packages/babylon/test/fixtures/flow/internal-slot/declare-class-static/input.js
vendored
Normal file
1
packages/babylon/test/fixtures/flow/internal-slot/declare-class-static/input.js
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
declare class C { static [[foo]]: T }
|
||||||
158
packages/babylon/test/fixtures/flow/internal-slot/declare-class-static/output.json
vendored
Normal file
158
packages/babylon/test/fixtures/flow/internal-slot/declare-class-static/output.json
vendored
Normal file
@ -0,0 +1,158 @@
|
|||||||
|
{
|
||||||
|
"type": "File",
|
||||||
|
"start": 0,
|
||||||
|
"end": 37,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 0
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 37
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"program": {
|
||||||
|
"type": "Program",
|
||||||
|
"start": 0,
|
||||||
|
"end": 37,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 0
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 37
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"sourceType": "module",
|
||||||
|
"body": [
|
||||||
|
{
|
||||||
|
"type": "DeclareClass",
|
||||||
|
"start": 0,
|
||||||
|
"end": 37,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 0
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 37
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"id": {
|
||||||
|
"type": "Identifier",
|
||||||
|
"start": 14,
|
||||||
|
"end": 15,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 14
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 15
|
||||||
|
},
|
||||||
|
"identifierName": "C"
|
||||||
|
},
|
||||||
|
"name": "C"
|
||||||
|
},
|
||||||
|
"typeParameters": null,
|
||||||
|
"extends": [],
|
||||||
|
"implements": [],
|
||||||
|
"mixins": [],
|
||||||
|
"body": {
|
||||||
|
"type": "ObjectTypeAnnotation",
|
||||||
|
"start": 16,
|
||||||
|
"end": 37,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 16
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 37
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"callProperties": [],
|
||||||
|
"properties": [],
|
||||||
|
"indexers": [],
|
||||||
|
"internalSlots": [
|
||||||
|
{
|
||||||
|
"type": "ObjectTypeInternalSlot",
|
||||||
|
"start": 18,
|
||||||
|
"end": 35,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 18
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 35
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"static": true,
|
||||||
|
"id": {
|
||||||
|
"type": "Identifier",
|
||||||
|
"start": 27,
|
||||||
|
"end": 30,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 27
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 30
|
||||||
|
},
|
||||||
|
"identifierName": "foo"
|
||||||
|
},
|
||||||
|
"name": "foo"
|
||||||
|
},
|
||||||
|
"method": false,
|
||||||
|
"value": {
|
||||||
|
"type": "GenericTypeAnnotation",
|
||||||
|
"start": 34,
|
||||||
|
"end": 35,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 34
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 35
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"typeParameters": null,
|
||||||
|
"id": {
|
||||||
|
"type": "Identifier",
|
||||||
|
"start": 34,
|
||||||
|
"end": 35,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 34
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 35
|
||||||
|
},
|
||||||
|
"identifierName": "T"
|
||||||
|
},
|
||||||
|
"name": "T"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"exact": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"directives": []
|
||||||
|
}
|
||||||
|
}
|
||||||
1
packages/babylon/test/fixtures/flow/internal-slot/declare-class/input.js
vendored
Normal file
1
packages/babylon/test/fixtures/flow/internal-slot/declare-class/input.js
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
declare class C { [[foo]]: T }
|
||||||
158
packages/babylon/test/fixtures/flow/internal-slot/declare-class/output.json
vendored
Normal file
158
packages/babylon/test/fixtures/flow/internal-slot/declare-class/output.json
vendored
Normal file
@ -0,0 +1,158 @@
|
|||||||
|
{
|
||||||
|
"type": "File",
|
||||||
|
"start": 0,
|
||||||
|
"end": 30,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 0
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 30
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"program": {
|
||||||
|
"type": "Program",
|
||||||
|
"start": 0,
|
||||||
|
"end": 30,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 0
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 30
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"sourceType": "module",
|
||||||
|
"body": [
|
||||||
|
{
|
||||||
|
"type": "DeclareClass",
|
||||||
|
"start": 0,
|
||||||
|
"end": 30,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 0
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 30
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"id": {
|
||||||
|
"type": "Identifier",
|
||||||
|
"start": 14,
|
||||||
|
"end": 15,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 14
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 15
|
||||||
|
},
|
||||||
|
"identifierName": "C"
|
||||||
|
},
|
||||||
|
"name": "C"
|
||||||
|
},
|
||||||
|
"typeParameters": null,
|
||||||
|
"extends": [],
|
||||||
|
"implements": [],
|
||||||
|
"mixins": [],
|
||||||
|
"body": {
|
||||||
|
"type": "ObjectTypeAnnotation",
|
||||||
|
"start": 16,
|
||||||
|
"end": 30,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 16
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 30
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"callProperties": [],
|
||||||
|
"properties": [],
|
||||||
|
"indexers": [],
|
||||||
|
"internalSlots": [
|
||||||
|
{
|
||||||
|
"type": "ObjectTypeInternalSlot",
|
||||||
|
"start": 18,
|
||||||
|
"end": 28,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 18
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 28
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"static": false,
|
||||||
|
"id": {
|
||||||
|
"type": "Identifier",
|
||||||
|
"start": 20,
|
||||||
|
"end": 23,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 20
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 23
|
||||||
|
},
|
||||||
|
"identifierName": "foo"
|
||||||
|
},
|
||||||
|
"name": "foo"
|
||||||
|
},
|
||||||
|
"method": false,
|
||||||
|
"value": {
|
||||||
|
"type": "GenericTypeAnnotation",
|
||||||
|
"start": 27,
|
||||||
|
"end": 28,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 27
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 28
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"typeParameters": null,
|
||||||
|
"id": {
|
||||||
|
"type": "Identifier",
|
||||||
|
"start": 27,
|
||||||
|
"end": 28,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 27
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 28
|
||||||
|
},
|
||||||
|
"identifierName": "T"
|
||||||
|
},
|
||||||
|
"name": "T"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"exact": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"directives": []
|
||||||
|
}
|
||||||
|
}
|
||||||
1
packages/babylon/test/fixtures/flow/internal-slot/interface-method/input.js
vendored
Normal file
1
packages/babylon/test/fixtures/flow/internal-slot/interface-method/input.js
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
interface T { [[foo]](): X }
|
||||||
176
packages/babylon/test/fixtures/flow/internal-slot/interface-method/output.json
vendored
Normal file
176
packages/babylon/test/fixtures/flow/internal-slot/interface-method/output.json
vendored
Normal file
@ -0,0 +1,176 @@
|
|||||||
|
{
|
||||||
|
"type": "File",
|
||||||
|
"start": 0,
|
||||||
|
"end": 28,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 0
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 28
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"program": {
|
||||||
|
"type": "Program",
|
||||||
|
"start": 0,
|
||||||
|
"end": 28,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 0
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 28
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"sourceType": "module",
|
||||||
|
"body": [
|
||||||
|
{
|
||||||
|
"type": "InterfaceDeclaration",
|
||||||
|
"start": 0,
|
||||||
|
"end": 28,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 0
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 28
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"id": {
|
||||||
|
"type": "Identifier",
|
||||||
|
"start": 10,
|
||||||
|
"end": 11,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 10
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 11
|
||||||
|
},
|
||||||
|
"identifierName": "T"
|
||||||
|
},
|
||||||
|
"name": "T"
|
||||||
|
},
|
||||||
|
"typeParameters": null,
|
||||||
|
"extends": [],
|
||||||
|
"implements": [],
|
||||||
|
"mixins": [],
|
||||||
|
"body": {
|
||||||
|
"type": "ObjectTypeAnnotation",
|
||||||
|
"start": 12,
|
||||||
|
"end": 28,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 12
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 28
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"callProperties": [],
|
||||||
|
"properties": [],
|
||||||
|
"indexers": [],
|
||||||
|
"internalSlots": [
|
||||||
|
{
|
||||||
|
"type": "ObjectTypeInternalSlot",
|
||||||
|
"start": 14,
|
||||||
|
"end": 26,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 14
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 26
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"static": false,
|
||||||
|
"id": {
|
||||||
|
"type": "Identifier",
|
||||||
|
"start": 16,
|
||||||
|
"end": 19,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 16
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 19
|
||||||
|
},
|
||||||
|
"identifierName": "foo"
|
||||||
|
},
|
||||||
|
"name": "foo"
|
||||||
|
},
|
||||||
|
"method": true,
|
||||||
|
"value": {
|
||||||
|
"type": "FunctionTypeAnnotation",
|
||||||
|
"start": 14,
|
||||||
|
"end": 26,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 14
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 26
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"params": [],
|
||||||
|
"rest": null,
|
||||||
|
"typeParameters": null,
|
||||||
|
"returnType": {
|
||||||
|
"type": "GenericTypeAnnotation",
|
||||||
|
"start": 25,
|
||||||
|
"end": 26,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 25
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 26
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"typeParameters": null,
|
||||||
|
"id": {
|
||||||
|
"type": "Identifier",
|
||||||
|
"start": 25,
|
||||||
|
"end": 26,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 25
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 26
|
||||||
|
},
|
||||||
|
"identifierName": "X"
|
||||||
|
},
|
||||||
|
"name": "X"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"exact": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"directives": []
|
||||||
|
}
|
||||||
|
}
|
||||||
1
packages/babylon/test/fixtures/flow/internal-slot/interface-variance/input.js
vendored
Normal file
1
packages/babylon/test/fixtures/flow/internal-slot/interface-variance/input.js
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
interface T { +[[foo]](): X }
|
||||||
3
packages/babylon/test/fixtures/flow/internal-slot/interface-variance/options.json
vendored
Normal file
3
packages/babylon/test/fixtures/flow/internal-slot/interface-variance/options.json
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"throws": "Unexpected token (1:14)"
|
||||||
|
}
|
||||||
1
packages/babylon/test/fixtures/flow/internal-slot/interface/input.js
vendored
Normal file
1
packages/babylon/test/fixtures/flow/internal-slot/interface/input.js
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
interface T { [[foo]]: X }
|
||||||
158
packages/babylon/test/fixtures/flow/internal-slot/interface/output.json
vendored
Normal file
158
packages/babylon/test/fixtures/flow/internal-slot/interface/output.json
vendored
Normal file
@ -0,0 +1,158 @@
|
|||||||
|
{
|
||||||
|
"type": "File",
|
||||||
|
"start": 0,
|
||||||
|
"end": 26,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 0
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 26
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"program": {
|
||||||
|
"type": "Program",
|
||||||
|
"start": 0,
|
||||||
|
"end": 26,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 0
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 26
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"sourceType": "module",
|
||||||
|
"body": [
|
||||||
|
{
|
||||||
|
"type": "InterfaceDeclaration",
|
||||||
|
"start": 0,
|
||||||
|
"end": 26,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 0
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 26
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"id": {
|
||||||
|
"type": "Identifier",
|
||||||
|
"start": 10,
|
||||||
|
"end": 11,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 10
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 11
|
||||||
|
},
|
||||||
|
"identifierName": "T"
|
||||||
|
},
|
||||||
|
"name": "T"
|
||||||
|
},
|
||||||
|
"typeParameters": null,
|
||||||
|
"extends": [],
|
||||||
|
"implements": [],
|
||||||
|
"mixins": [],
|
||||||
|
"body": {
|
||||||
|
"type": "ObjectTypeAnnotation",
|
||||||
|
"start": 12,
|
||||||
|
"end": 26,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 12
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 26
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"callProperties": [],
|
||||||
|
"properties": [],
|
||||||
|
"indexers": [],
|
||||||
|
"internalSlots": [
|
||||||
|
{
|
||||||
|
"type": "ObjectTypeInternalSlot",
|
||||||
|
"start": 14,
|
||||||
|
"end": 24,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 14
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 24
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"static": false,
|
||||||
|
"id": {
|
||||||
|
"type": "Identifier",
|
||||||
|
"start": 16,
|
||||||
|
"end": 19,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 16
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 19
|
||||||
|
},
|
||||||
|
"identifierName": "foo"
|
||||||
|
},
|
||||||
|
"name": "foo"
|
||||||
|
},
|
||||||
|
"method": false,
|
||||||
|
"value": {
|
||||||
|
"type": "GenericTypeAnnotation",
|
||||||
|
"start": 23,
|
||||||
|
"end": 24,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 23
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 24
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"typeParameters": null,
|
||||||
|
"id": {
|
||||||
|
"type": "Identifier",
|
||||||
|
"start": 23,
|
||||||
|
"end": 24,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 23
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 24
|
||||||
|
},
|
||||||
|
"identifierName": "X"
|
||||||
|
},
|
||||||
|
"name": "X"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"exact": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"directives": []
|
||||||
|
}
|
||||||
|
}
|
||||||
1
packages/babylon/test/fixtures/flow/internal-slot/object-method/input.js
vendored
Normal file
1
packages/babylon/test/fixtures/flow/internal-slot/object-method/input.js
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
type T = { [[foo]](): X }
|
||||||
173
packages/babylon/test/fixtures/flow/internal-slot/object-method/output.json
vendored
Normal file
173
packages/babylon/test/fixtures/flow/internal-slot/object-method/output.json
vendored
Normal file
@ -0,0 +1,173 @@
|
|||||||
|
{
|
||||||
|
"type": "File",
|
||||||
|
"start": 0,
|
||||||
|
"end": 25,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 0
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 25
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"program": {
|
||||||
|
"type": "Program",
|
||||||
|
"start": 0,
|
||||||
|
"end": 25,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 0
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 25
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"sourceType": "module",
|
||||||
|
"body": [
|
||||||
|
{
|
||||||
|
"type": "TypeAlias",
|
||||||
|
"start": 0,
|
||||||
|
"end": 25,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 0
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 25
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"id": {
|
||||||
|
"type": "Identifier",
|
||||||
|
"start": 5,
|
||||||
|
"end": 6,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 5
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 6
|
||||||
|
},
|
||||||
|
"identifierName": "T"
|
||||||
|
},
|
||||||
|
"name": "T"
|
||||||
|
},
|
||||||
|
"typeParameters": null,
|
||||||
|
"right": {
|
||||||
|
"type": "ObjectTypeAnnotation",
|
||||||
|
"start": 9,
|
||||||
|
"end": 25,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 9
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 25
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"callProperties": [],
|
||||||
|
"properties": [],
|
||||||
|
"indexers": [],
|
||||||
|
"internalSlots": [
|
||||||
|
{
|
||||||
|
"type": "ObjectTypeInternalSlot",
|
||||||
|
"start": 11,
|
||||||
|
"end": 23,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 11
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 23
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"static": false,
|
||||||
|
"id": {
|
||||||
|
"type": "Identifier",
|
||||||
|
"start": 13,
|
||||||
|
"end": 16,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 13
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 16
|
||||||
|
},
|
||||||
|
"identifierName": "foo"
|
||||||
|
},
|
||||||
|
"name": "foo"
|
||||||
|
},
|
||||||
|
"method": true,
|
||||||
|
"value": {
|
||||||
|
"type": "FunctionTypeAnnotation",
|
||||||
|
"start": 11,
|
||||||
|
"end": 23,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 11
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 23
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"params": [],
|
||||||
|
"rest": null,
|
||||||
|
"typeParameters": null,
|
||||||
|
"returnType": {
|
||||||
|
"type": "GenericTypeAnnotation",
|
||||||
|
"start": 22,
|
||||||
|
"end": 23,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 22
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 23
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"typeParameters": null,
|
||||||
|
"id": {
|
||||||
|
"type": "Identifier",
|
||||||
|
"start": 22,
|
||||||
|
"end": 23,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 22
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 23
|
||||||
|
},
|
||||||
|
"identifierName": "X"
|
||||||
|
},
|
||||||
|
"name": "X"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"exact": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"directives": []
|
||||||
|
}
|
||||||
|
}
|
||||||
1
packages/babylon/test/fixtures/flow/internal-slot/object-variance/input.js
vendored
Normal file
1
packages/babylon/test/fixtures/flow/internal-slot/object-variance/input.js
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
type T = { +[[foo]]: X }
|
||||||
3
packages/babylon/test/fixtures/flow/internal-slot/object-variance/options.json
vendored
Normal file
3
packages/babylon/test/fixtures/flow/internal-slot/object-variance/options.json
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"throws": "Unexpected token (1:11)"
|
||||||
|
}
|
||||||
1
packages/babylon/test/fixtures/flow/internal-slot/object/input.js
vendored
Normal file
1
packages/babylon/test/fixtures/flow/internal-slot/object/input.js
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
type T = { [[foo]]: X }
|
||||||
155
packages/babylon/test/fixtures/flow/internal-slot/object/output.json
vendored
Normal file
155
packages/babylon/test/fixtures/flow/internal-slot/object/output.json
vendored
Normal file
@ -0,0 +1,155 @@
|
|||||||
|
{
|
||||||
|
"type": "File",
|
||||||
|
"start": 0,
|
||||||
|
"end": 23,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 0
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 23
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"program": {
|
||||||
|
"type": "Program",
|
||||||
|
"start": 0,
|
||||||
|
"end": 23,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 0
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 23
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"sourceType": "module",
|
||||||
|
"body": [
|
||||||
|
{
|
||||||
|
"type": "TypeAlias",
|
||||||
|
"start": 0,
|
||||||
|
"end": 23,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 0
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 23
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"id": {
|
||||||
|
"type": "Identifier",
|
||||||
|
"start": 5,
|
||||||
|
"end": 6,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 5
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 6
|
||||||
|
},
|
||||||
|
"identifierName": "T"
|
||||||
|
},
|
||||||
|
"name": "T"
|
||||||
|
},
|
||||||
|
"typeParameters": null,
|
||||||
|
"right": {
|
||||||
|
"type": "ObjectTypeAnnotation",
|
||||||
|
"start": 9,
|
||||||
|
"end": 23,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 9
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 23
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"callProperties": [],
|
||||||
|
"properties": [],
|
||||||
|
"indexers": [],
|
||||||
|
"internalSlots": [
|
||||||
|
{
|
||||||
|
"type": "ObjectTypeInternalSlot",
|
||||||
|
"start": 11,
|
||||||
|
"end": 21,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 11
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 21
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"static": false,
|
||||||
|
"id": {
|
||||||
|
"type": "Identifier",
|
||||||
|
"start": 13,
|
||||||
|
"end": 16,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 13
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 16
|
||||||
|
},
|
||||||
|
"identifierName": "foo"
|
||||||
|
},
|
||||||
|
"name": "foo"
|
||||||
|
},
|
||||||
|
"method": false,
|
||||||
|
"value": {
|
||||||
|
"type": "GenericTypeAnnotation",
|
||||||
|
"start": 20,
|
||||||
|
"end": 21,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 20
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 21
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"typeParameters": null,
|
||||||
|
"id": {
|
||||||
|
"type": "Identifier",
|
||||||
|
"start": 20,
|
||||||
|
"end": 21,
|
||||||
|
"loc": {
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 20
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 21
|
||||||
|
},
|
||||||
|
"identifierName": "X"
|
||||||
|
},
|
||||||
|
"name": "X"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"exact": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"directives": []
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -217,6 +217,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -217,6 +217,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -165,6 +165,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@ -165,6 +165,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@ -217,6 +217,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -217,6 +217,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -230,6 +230,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -150,6 +150,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -227,6 +228,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@ -618,6 +620,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -695,6 +698,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@ -704,6 +708,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -879,6 +884,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -956,6 +962,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@ -965,6 +972,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -209,6 +209,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": true
|
"exact": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -525,6 +526,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": true
|
"exact": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -736,6 +738,7 @@
|
|||||||
"callProperties": [],
|
"callProperties": [],
|
||||||
"properties": [],
|
"properties": [],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": true
|
"exact": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -991,6 +994,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": true
|
"exact": true
|
||||||
},
|
},
|
||||||
"variance": null,
|
"variance": null,
|
||||||
@ -1050,6 +1054,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1519,6 +1524,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
},
|
},
|
||||||
"variance": null,
|
"variance": null,
|
||||||
@ -1578,6 +1584,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": true
|
"exact": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -163,6 +163,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -163,6 +163,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -193,6 +193,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -193,6 +193,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -126,6 +126,7 @@
|
|||||||
"variance": null
|
"variance": null
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -158,6 +158,7 @@
|
|||||||
"variance": null
|
"variance": null
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -108,6 +108,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -127,6 +127,7 @@
|
|||||||
"callProperties": [],
|
"callProperties": [],
|
||||||
"properties": [],
|
"properties": [],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
},
|
},
|
||||||
"variance": null,
|
"variance": null,
|
||||||
@ -163,11 +164,13 @@
|
|||||||
"callProperties": [],
|
"callProperties": [],
|
||||||
"properties": [],
|
"properties": [],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -274,6 +274,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -94,6 +94,7 @@
|
|||||||
"callProperties": [],
|
"callProperties": [],
|
||||||
"properties": [],
|
"properties": [],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@ -157,6 +157,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -157,6 +157,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -222,6 +222,7 @@
|
|||||||
"variance": null
|
"variance": null
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -171,6 +171,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -209,6 +209,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -207,6 +207,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
},
|
},
|
||||||
"variance": null,
|
"variance": null,
|
||||||
@ -214,6 +215,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -221,6 +221,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -229,6 +230,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -209,6 +209,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -209,6 +209,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -233,6 +233,7 @@
|
|||||||
"variance": null
|
"variance": null
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -319,6 +319,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -292,6 +292,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -212,6 +212,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -212,6 +212,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"indexers": [],
|
"indexers": [],
|
||||||
|
"internalSlots": [],
|
||||||
"exact": false
|
"exact": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user