[ts] Add support for the "intrinsic" keyword (#12147)
This commit is contained in:
parent
9c7d9c0fe5
commit
9f40d6fcd0
@ -162,6 +162,9 @@ export function TSNullKeyword() {
|
|||||||
export function TSNeverKeyword() {
|
export function TSNeverKeyword() {
|
||||||
this.word("never");
|
this.word("never");
|
||||||
}
|
}
|
||||||
|
export function TSIntrinsicKeyword() {
|
||||||
|
this.word("intrinsic");
|
||||||
|
}
|
||||||
|
|
||||||
export function TSThisType() {
|
export function TSThisType() {
|
||||||
this.word("this");
|
this.word("this");
|
||||||
|
|||||||
@ -9,3 +9,4 @@ let st: string;
|
|||||||
let sy: symbol;
|
let sy: symbol;
|
||||||
let u: undefined;
|
let u: undefined;
|
||||||
let v: void;
|
let v: void;
|
||||||
|
type Foo = intrinsic;
|
||||||
|
|||||||
@ -9,3 +9,4 @@ let st: string;
|
|||||||
let sy: symbol;
|
let sy: symbol;
|
||||||
let u: undefined;
|
let u: undefined;
|
||||||
let v: void;
|
let v: void;
|
||||||
|
type Foo = intrinsic;
|
||||||
|
|||||||
@ -113,6 +113,7 @@ const TSErrors = Object.freeze({
|
|||||||
});
|
});
|
||||||
|
|
||||||
// Doesn't handle "void" or "null" because those are keywords, not identifiers.
|
// Doesn't handle "void" or "null" because those are keywords, not identifiers.
|
||||||
|
// It also doesn't handle "intrinsic", since usually it's not a keyword.
|
||||||
function keywordTypeFromName(
|
function keywordTypeFromName(
|
||||||
value: string,
|
value: string,
|
||||||
): N.TsKeywordTypeType | typeof undefined {
|
): N.TsKeywordTypeType | typeof undefined {
|
||||||
@ -1242,7 +1243,21 @@ export default (superClass: Class<Parser>): Class<Parser> =>
|
|||||||
this.checkLVal(node.id, BIND_TS_TYPE, undefined, "typescript type alias");
|
this.checkLVal(node.id, BIND_TS_TYPE, undefined, "typescript type alias");
|
||||||
|
|
||||||
node.typeParameters = this.tsTryParseTypeParameters();
|
node.typeParameters = this.tsTryParseTypeParameters();
|
||||||
node.typeAnnotation = this.tsExpectThenParseType(tt.eq);
|
node.typeAnnotation = this.tsInType(() => {
|
||||||
|
this.expect(tt.eq);
|
||||||
|
|
||||||
|
if (
|
||||||
|
this.isContextual("intrinsic") &&
|
||||||
|
this.lookahead().type !== tt.dot
|
||||||
|
) {
|
||||||
|
const node: N.TsKeywordType = this.startNode();
|
||||||
|
this.next();
|
||||||
|
return this.finishNode(node, "TSIntrinsicKeyword");
|
||||||
|
}
|
||||||
|
|
||||||
|
return this.tsParseType();
|
||||||
|
});
|
||||||
|
|
||||||
this.semicolon();
|
this.semicolon();
|
||||||
return this.finishNode(node, "TSTypeAliasDeclaration");
|
return this.finishNode(node, "TSTypeAliasDeclaration");
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1215,7 +1215,8 @@ export type TsKeywordTypeType =
|
|||||||
| "TSVoidKeyword"
|
| "TSVoidKeyword"
|
||||||
| "TSUndefinedKeyword"
|
| "TSUndefinedKeyword"
|
||||||
| "TSNullKeyword"
|
| "TSNullKeyword"
|
||||||
| "TSNeverKeyword";
|
| "TSNeverKeyword"
|
||||||
|
| "TSIntrinsicKeyword";
|
||||||
export type TsKeywordType = TsTypeBase & {
|
export type TsKeywordType = TsTypeBase & {
|
||||||
type: TsKeywordTypeType,
|
type: TsKeywordTypeType,
|
||||||
};
|
};
|
||||||
|
|||||||
6
packages/babel-parser/test/fixtures/typescript/types/intrinsic-identifier/input.ts
vendored
Normal file
6
packages/babel-parser/test/fixtures/typescript/types/intrinsic-identifier/input.ts
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
type intrinsic = 2;
|
||||||
|
function foo(x: intrinsic): intrinsic {
|
||||||
|
var a: intrinsic = 2;
|
||||||
|
type X = 1 | intrinsic;
|
||||||
|
type Foo = intrinsic.bar;
|
||||||
|
}
|
||||||
188
packages/babel-parser/test/fixtures/typescript/types/intrinsic-identifier/output.json
vendored
Normal file
188
packages/babel-parser/test/fixtures/typescript/types/intrinsic-identifier/output.json
vendored
Normal file
@ -0,0 +1,188 @@
|
|||||||
|
{
|
||||||
|
"type": "File",
|
||||||
|
"start":0,"end":139,"loc":{"start":{"line":1,"column":0},"end":{"line":6,"column":1}},
|
||||||
|
"program": {
|
||||||
|
"type": "Program",
|
||||||
|
"start":0,"end":139,"loc":{"start":{"line":1,"column":0},"end":{"line":6,"column":1}},
|
||||||
|
"sourceType": "module",
|
||||||
|
"interpreter": null,
|
||||||
|
"body": [
|
||||||
|
{
|
||||||
|
"type": "TSTypeAliasDeclaration",
|
||||||
|
"start":0,"end":19,"loc":{"start":{"line":1,"column":0},"end":{"line":1,"column":19}},
|
||||||
|
"id": {
|
||||||
|
"type": "Identifier",
|
||||||
|
"start":5,"end":14,"loc":{"start":{"line":1,"column":5},"end":{"line":1,"column":14},"identifierName":"intrinsic"},
|
||||||
|
"name": "intrinsic"
|
||||||
|
},
|
||||||
|
"typeAnnotation": {
|
||||||
|
"type": "TSLiteralType",
|
||||||
|
"start":17,"end":18,"loc":{"start":{"line":1,"column":17},"end":{"line":1,"column":18}},
|
||||||
|
"literal": {
|
||||||
|
"type": "NumericLiteral",
|
||||||
|
"start":17,"end":18,"loc":{"start":{"line":1,"column":17},"end":{"line":1,"column":18}},
|
||||||
|
"extra": {
|
||||||
|
"rawValue": 2,
|
||||||
|
"raw": "2"
|
||||||
|
},
|
||||||
|
"value": 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "FunctionDeclaration",
|
||||||
|
"start":20,"end":139,"loc":{"start":{"line":2,"column":0},"end":{"line":6,"column":1}},
|
||||||
|
"id": {
|
||||||
|
"type": "Identifier",
|
||||||
|
"start":29,"end":32,"loc":{"start":{"line":2,"column":9},"end":{"line":2,"column":12},"identifierName":"foo"},
|
||||||
|
"name": "foo"
|
||||||
|
},
|
||||||
|
"generator": false,
|
||||||
|
"async": false,
|
||||||
|
"params": [
|
||||||
|
{
|
||||||
|
"type": "Identifier",
|
||||||
|
"start":33,"end":45,"loc":{"start":{"line":2,"column":13},"end":{"line":2,"column":25},"identifierName":"x"},
|
||||||
|
"name": "x",
|
||||||
|
"typeAnnotation": {
|
||||||
|
"type": "TSTypeAnnotation",
|
||||||
|
"start":34,"end":45,"loc":{"start":{"line":2,"column":14},"end":{"line":2,"column":25}},
|
||||||
|
"typeAnnotation": {
|
||||||
|
"type": "TSTypeReference",
|
||||||
|
"start":36,"end":45,"loc":{"start":{"line":2,"column":16},"end":{"line":2,"column":25}},
|
||||||
|
"typeName": {
|
||||||
|
"type": "Identifier",
|
||||||
|
"start":36,"end":45,"loc":{"start":{"line":2,"column":16},"end":{"line":2,"column":25},"identifierName":"intrinsic"},
|
||||||
|
"name": "intrinsic"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"returnType": {
|
||||||
|
"type": "TSTypeAnnotation",
|
||||||
|
"start":46,"end":57,"loc":{"start":{"line":2,"column":26},"end":{"line":2,"column":37}},
|
||||||
|
"typeAnnotation": {
|
||||||
|
"type": "TSTypeReference",
|
||||||
|
"start":48,"end":57,"loc":{"start":{"line":2,"column":28},"end":{"line":2,"column":37}},
|
||||||
|
"typeName": {
|
||||||
|
"type": "Identifier",
|
||||||
|
"start":48,"end":57,"loc":{"start":{"line":2,"column":28},"end":{"line":2,"column":37},"identifierName":"intrinsic"},
|
||||||
|
"name": "intrinsic"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"body": {
|
||||||
|
"type": "BlockStatement",
|
||||||
|
"start":58,"end":139,"loc":{"start":{"line":2,"column":38},"end":{"line":6,"column":1}},
|
||||||
|
"body": [
|
||||||
|
{
|
||||||
|
"type": "VariableDeclaration",
|
||||||
|
"start":62,"end":83,"loc":{"start":{"line":3,"column":2},"end":{"line":3,"column":23}},
|
||||||
|
"declarations": [
|
||||||
|
{
|
||||||
|
"type": "VariableDeclarator",
|
||||||
|
"start":66,"end":82,"loc":{"start":{"line":3,"column":6},"end":{"line":3,"column":22}},
|
||||||
|
"id": {
|
||||||
|
"type": "Identifier",
|
||||||
|
"start":66,"end":78,"loc":{"start":{"line":3,"column":6},"end":{"line":3,"column":18},"identifierName":"a"},
|
||||||
|
"name": "a",
|
||||||
|
"typeAnnotation": {
|
||||||
|
"type": "TSTypeAnnotation",
|
||||||
|
"start":67,"end":78,"loc":{"start":{"line":3,"column":7},"end":{"line":3,"column":18}},
|
||||||
|
"typeAnnotation": {
|
||||||
|
"type": "TSTypeReference",
|
||||||
|
"start":69,"end":78,"loc":{"start":{"line":3,"column":9},"end":{"line":3,"column":18}},
|
||||||
|
"typeName": {
|
||||||
|
"type": "Identifier",
|
||||||
|
"start":69,"end":78,"loc":{"start":{"line":3,"column":9},"end":{"line":3,"column":18},"identifierName":"intrinsic"},
|
||||||
|
"name": "intrinsic"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"init": {
|
||||||
|
"type": "NumericLiteral",
|
||||||
|
"start":81,"end":82,"loc":{"start":{"line":3,"column":21},"end":{"line":3,"column":22}},
|
||||||
|
"extra": {
|
||||||
|
"rawValue": 2,
|
||||||
|
"raw": "2"
|
||||||
|
},
|
||||||
|
"value": 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"kind": "var"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "TSTypeAliasDeclaration",
|
||||||
|
"start":86,"end":109,"loc":{"start":{"line":4,"column":2},"end":{"line":4,"column":25}},
|
||||||
|
"id": {
|
||||||
|
"type": "Identifier",
|
||||||
|
"start":91,"end":92,"loc":{"start":{"line":4,"column":7},"end":{"line":4,"column":8},"identifierName":"X"},
|
||||||
|
"name": "X"
|
||||||
|
},
|
||||||
|
"typeAnnotation": {
|
||||||
|
"type": "TSUnionType",
|
||||||
|
"start":95,"end":108,"loc":{"start":{"line":4,"column":11},"end":{"line":4,"column":24}},
|
||||||
|
"types": [
|
||||||
|
{
|
||||||
|
"type": "TSLiteralType",
|
||||||
|
"start":95,"end":96,"loc":{"start":{"line":4,"column":11},"end":{"line":4,"column":12}},
|
||||||
|
"literal": {
|
||||||
|
"type": "NumericLiteral",
|
||||||
|
"start":95,"end":96,"loc":{"start":{"line":4,"column":11},"end":{"line":4,"column":12}},
|
||||||
|
"extra": {
|
||||||
|
"rawValue": 1,
|
||||||
|
"raw": "1"
|
||||||
|
},
|
||||||
|
"value": 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "TSTypeReference",
|
||||||
|
"start":99,"end":108,"loc":{"start":{"line":4,"column":15},"end":{"line":4,"column":24}},
|
||||||
|
"typeName": {
|
||||||
|
"type": "Identifier",
|
||||||
|
"start":99,"end":108,"loc":{"start":{"line":4,"column":15},"end":{"line":4,"column":24},"identifierName":"intrinsic"},
|
||||||
|
"name": "intrinsic"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "TSTypeAliasDeclaration",
|
||||||
|
"start":112,"end":137,"loc":{"start":{"line":5,"column":2},"end":{"line":5,"column":27}},
|
||||||
|
"id": {
|
||||||
|
"type": "Identifier",
|
||||||
|
"start":117,"end":120,"loc":{"start":{"line":5,"column":7},"end":{"line":5,"column":10},"identifierName":"Foo"},
|
||||||
|
"name": "Foo"
|
||||||
|
},
|
||||||
|
"typeAnnotation": {
|
||||||
|
"type": "TSTypeReference",
|
||||||
|
"start":123,"end":136,"loc":{"start":{"line":5,"column":13},"end":{"line":5,"column":26}},
|
||||||
|
"typeName": {
|
||||||
|
"type": "TSQualifiedName",
|
||||||
|
"start":123,"end":136,"loc":{"start":{"line":5,"column":13},"end":{"line":5,"column":26}},
|
||||||
|
"left": {
|
||||||
|
"type": "Identifier",
|
||||||
|
"start":123,"end":132,"loc":{"start":{"line":5,"column":13},"end":{"line":5,"column":22},"identifierName":"intrinsic"},
|
||||||
|
"name": "intrinsic"
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"type": "Identifier",
|
||||||
|
"start":133,"end":136,"loc":{"start":{"line":5,"column":23},"end":{"line":5,"column":26},"identifierName":"bar"},
|
||||||
|
"name": "bar"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"directives": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"directives": []
|
||||||
|
}
|
||||||
|
}
|
||||||
2
packages/babel-parser/test/fixtures/typescript/types/intrinsic-keyword-error/input.ts
vendored
Normal file
2
packages/babel-parser/test/fixtures/typescript/types/intrinsic-keyword-error/input.ts
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
type Foo = intrinsic["foo"];
|
||||||
|
|
||||||
3
packages/babel-parser/test/fixtures/typescript/types/intrinsic-keyword-error/options.json
vendored
Normal file
3
packages/babel-parser/test/fixtures/typescript/types/intrinsic-keyword-error/options.json
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"throws": "Unexpected token, expected \";\" (1:20)"
|
||||||
|
}
|
||||||
2
packages/babel-parser/test/fixtures/typescript/types/intrinsic-keyword/input.ts
vendored
Normal file
2
packages/babel-parser/test/fixtures/typescript/types/intrinsic-keyword/input.ts
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
type Foo = intrinsic;
|
||||||
|
type Bar<T> = intrinsic;
|
||||||
50
packages/babel-parser/test/fixtures/typescript/types/intrinsic-keyword/output.json
vendored
Normal file
50
packages/babel-parser/test/fixtures/typescript/types/intrinsic-keyword/output.json
vendored
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"type": "File",
|
||||||
|
"start":0,"end":46,"loc":{"start":{"line":1,"column":0},"end":{"line":2,"column":24}},
|
||||||
|
"program": {
|
||||||
|
"type": "Program",
|
||||||
|
"start":0,"end":46,"loc":{"start":{"line":1,"column":0},"end":{"line":2,"column":24}},
|
||||||
|
"sourceType": "module",
|
||||||
|
"interpreter": null,
|
||||||
|
"body": [
|
||||||
|
{
|
||||||
|
"type": "TSTypeAliasDeclaration",
|
||||||
|
"start":0,"end":21,"loc":{"start":{"line":1,"column":0},"end":{"line":1,"column":21}},
|
||||||
|
"id": {
|
||||||
|
"type": "Identifier",
|
||||||
|
"start":5,"end":8,"loc":{"start":{"line":1,"column":5},"end":{"line":1,"column":8},"identifierName":"Foo"},
|
||||||
|
"name": "Foo"
|
||||||
|
},
|
||||||
|
"typeAnnotation": {
|
||||||
|
"type": "TSIntrinsicKeyword",
|
||||||
|
"start":11,"end":20,"loc":{"start":{"line":1,"column":11},"end":{"line":1,"column":20}}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "TSTypeAliasDeclaration",
|
||||||
|
"start":22,"end":46,"loc":{"start":{"line":2,"column":0},"end":{"line":2,"column":24}},
|
||||||
|
"id": {
|
||||||
|
"type": "Identifier",
|
||||||
|
"start":27,"end":30,"loc":{"start":{"line":2,"column":5},"end":{"line":2,"column":8},"identifierName":"Bar"},
|
||||||
|
"name": "Bar"
|
||||||
|
},
|
||||||
|
"typeParameters": {
|
||||||
|
"type": "TSTypeParameterDeclaration",
|
||||||
|
"start":30,"end":33,"loc":{"start":{"line":2,"column":8},"end":{"line":2,"column":11}},
|
||||||
|
"params": [
|
||||||
|
{
|
||||||
|
"type": "TSTypeParameter",
|
||||||
|
"start":31,"end":32,"loc":{"start":{"line":2,"column":9},"end":{"line":2,"column":10}},
|
||||||
|
"name": "T"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"typeAnnotation": {
|
||||||
|
"type": "TSIntrinsicKeyword",
|
||||||
|
"start":36,"end":45,"loc":{"start":{"line":2,"column":14},"end":{"line":2,"column":23}}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"directives": []
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -857,6 +857,12 @@ export function assertTSBooleanKeyword(node: Object, opts?: Object = {}): void {
|
|||||||
export function assertTSBigIntKeyword(node: Object, opts?: Object = {}): void {
|
export function assertTSBigIntKeyword(node: Object, opts?: Object = {}): void {
|
||||||
assert("TSBigIntKeyword", node, opts);
|
assert("TSBigIntKeyword", node, opts);
|
||||||
}
|
}
|
||||||
|
export function assertTSIntrinsicKeyword(
|
||||||
|
node: Object,
|
||||||
|
opts?: Object = {},
|
||||||
|
): void {
|
||||||
|
assert("TSIntrinsicKeyword", node, opts);
|
||||||
|
}
|
||||||
export function assertTSNeverKeyword(node: Object, opts?: Object = {}): void {
|
export function assertTSNeverKeyword(node: Object, opts?: Object = {}): void {
|
||||||
assert("TSNeverKeyword", node, opts);
|
assert("TSNeverKeyword", node, opts);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -794,6 +794,11 @@ export function tsBigIntKeyword(...args: Array<any>): Object {
|
|||||||
}
|
}
|
||||||
export { tsBigIntKeyword as TSBigIntKeyword };
|
export { tsBigIntKeyword as TSBigIntKeyword };
|
||||||
export { tsBigIntKeyword as tSBigIntKeyword };
|
export { tsBigIntKeyword as tSBigIntKeyword };
|
||||||
|
export function tsIntrinsicKeyword(...args: Array<any>): Object {
|
||||||
|
return builder("TSIntrinsicKeyword", ...args);
|
||||||
|
}
|
||||||
|
export { tsIntrinsicKeyword as TSIntrinsicKeyword };
|
||||||
|
export { tsIntrinsicKeyword as tSIntrinsicKeyword };
|
||||||
export function tsNeverKeyword(...args: Array<any>): Object {
|
export function tsNeverKeyword(...args: Array<any>): Object {
|
||||||
return builder("TSNeverKeyword", ...args);
|
return builder("TSNeverKeyword", ...args);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -132,6 +132,7 @@ const tsKeywordTypes = [
|
|||||||
"TSAnyKeyword",
|
"TSAnyKeyword",
|
||||||
"TSBooleanKeyword",
|
"TSBooleanKeyword",
|
||||||
"TSBigIntKeyword",
|
"TSBigIntKeyword",
|
||||||
|
"TSIntrinsicKeyword",
|
||||||
"TSNeverKeyword",
|
"TSNeverKeyword",
|
||||||
"TSNullKeyword",
|
"TSNullKeyword",
|
||||||
"TSNumberKeyword",
|
"TSNumberKeyword",
|
||||||
|
|||||||
@ -2761,6 +2761,20 @@ export function isTSBigIntKeyword(node: ?Object, opts?: Object): boolean {
|
|||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
export function isTSIntrinsicKeyword(node: ?Object, opts?: Object): boolean {
|
||||||
|
if (!node) return false;
|
||||||
|
|
||||||
|
const nodeType = node.type;
|
||||||
|
if (nodeType === "TSIntrinsicKeyword") {
|
||||||
|
if (typeof opts === "undefined") {
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
return shallowEqual(node, opts);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
export function isTSNeverKeyword(node: ?Object, opts?: Object): boolean {
|
export function isTSNeverKeyword(node: ?Object, opts?: Object): boolean {
|
||||||
if (!node) return false;
|
if (!node) return false;
|
||||||
|
|
||||||
@ -4616,6 +4630,7 @@ export function isTSType(node: ?Object, opts?: Object): boolean {
|
|||||||
"TSAnyKeyword" === nodeType ||
|
"TSAnyKeyword" === nodeType ||
|
||||||
"TSBooleanKeyword" === nodeType ||
|
"TSBooleanKeyword" === nodeType ||
|
||||||
"TSBigIntKeyword" === nodeType ||
|
"TSBigIntKeyword" === nodeType ||
|
||||||
|
"TSIntrinsicKeyword" === nodeType ||
|
||||||
"TSNeverKeyword" === nodeType ||
|
"TSNeverKeyword" === nodeType ||
|
||||||
"TSNullKeyword" === nodeType ||
|
"TSNullKeyword" === nodeType ||
|
||||||
"TSNumberKeyword" === nodeType ||
|
"TSNumberKeyword" === nodeType ||
|
||||||
@ -4666,6 +4681,7 @@ export function isTSBaseType(node: ?Object, opts?: Object): boolean {
|
|||||||
"TSAnyKeyword" === nodeType ||
|
"TSAnyKeyword" === nodeType ||
|
||||||
"TSBooleanKeyword" === nodeType ||
|
"TSBooleanKeyword" === nodeType ||
|
||||||
"TSBigIntKeyword" === nodeType ||
|
"TSBigIntKeyword" === nodeType ||
|
||||||
|
"TSIntrinsicKeyword" === nodeType ||
|
||||||
"TSNeverKeyword" === nodeType ||
|
"TSNeverKeyword" === nodeType ||
|
||||||
"TSNullKeyword" === nodeType ||
|
"TSNullKeyword" === nodeType ||
|
||||||
"TSNumberKeyword" === nodeType ||
|
"TSNumberKeyword" === nodeType ||
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user