/third_party/typescript_eslint/packages/eslint-plugin/src/rules/ |
D | restrict-plus-operands.ts | 64 if (type.flags & ts.TypeFlags.BigIntLiteral) {
|
/third_party/typescript/src/services/ |
D | classifier.ts | 186 SyntaxKind.BigIntLiteral, 291 case ClassificationType.bigintLiteral: return TokenClass.BigIntLiteral; 432 case SyntaxKind.BigIntLiteral: 992 else if (tokenKind === SyntaxKind.BigIntLiteral) {
|
D | types.ts | 1234 BigIntLiteral, enumerator
|
/third_party/typescript_eslint/packages/experimental-utils/src/ts-eslint/ |
D | Rule.ts | 255 BigIntLiteral?: RuleFunction<TSESTree.BigIntLiteral>; property
|
/third_party/typescript_eslint/packages/typescript-estree/src/ts-estree/ |
D | ts-nodes.ts | 89 | ts.BigIntLiteral
|
D | estree-to-ts-node-types.ts | 105 | ts.BigIntLiteral;
|
/third_party/typescript/src/services/codefixes/ |
D | fixStrictClassInitialization.ts | 121 else if (type.flags & TypeFlags.BigIntLiteral) {
|
/third_party/typescript_eslint/packages/types/src/ |
D | ts-estree.ts | 148 | BigIntLiteral 408 | BigIntLiteral 817 export interface BigIntLiteral extends LiteralBase { interface
|
/third_party/typescript/src/compiler/factory/ |
D | nodeTests.ts | 8 export function isBigIntLiteral(node: Node): node is BigIntLiteral { 9 return node.kind === SyntaxKind.BigIntLiteral;
|
D | nodeFactory.ts | 786 function createBigIntLiteral(value: string | PseudoBigInt): BigIntLiteral { 787 …const node = createBaseLiteral<BigIntLiteral>(SyntaxKind.BigIntLiteral, typeof value === "string" … 823 case SyntaxKind.BigIntLiteral: return createBigIntLiteral(text); 5498 case SyntaxKind.BigIntLiteral:
|
/third_party/typescript/src/compiler/ |
D | types.ts | 35 BigIntLiteral, enumerator 463 | SyntaxKind.BigIntLiteral 2147 export interface BigIntLiteral extends LiteralExpression { 2148 readonly kind: SyntaxKind.BigIntLiteral; 2153 | BigIntLiteral 4992 BigIntLiteral = 1 << 11, 5015 Literal = StringLiteral | NumberLiteral | BigIntLiteral | BooleanLiteral, 5021 …DefinitelyFalsy = StringLiteral | NumberLiteral | BigIntLiteral | BooleanLiteral | Void | Undefine… 5029 BigIntLike = BigInt | BigIntLiteral, 6874 createBigIntLiteral(value: string | PseudoBigInt): BigIntLiteral;
|
D | debug.ts | 539 …this.flags & TypeFlags.BigIntLiteral ? `LiteralType ${(this as BigIntLiteralType).value.negative ?…
|
D | checker.ts | 4585 if (type.flags & TypeFlags.BigIntLiteral) { 13426 flags & TypeFlags.BigIntLiteral && includes & TypeFlags.BigInt || 13659 t.flags & TypeFlags.BigInt && includes & TypeFlags.BigIntLiteral || 13675 type.flags & TypeFlags.BigIntLiteral ? bigintType : 13818 includes & TypeFlags.BigInt && includes & TypeFlags.BigIntLiteral || 13968 function getBigIntLiteralType(node: BigIntLiteral): LiteralType { 14124 … type.flags & TypeFlags.BigIntLiteral ? pseudoBigIntToString((<BigIntLiteralType>type).value) : 15183 typeof value === "string" ? TypeFlags.StringLiteral : TypeFlags.BigIntLiteral) | 19586 type.flags & TypeFlags.BigIntLiteral ? bigintType : 19596 type.flags & TypeFlags.BigIntLiteral && isFreshLiteralType(type) ? bigintType : [all …]
|
D | utilitiesPublic.ts | 1476 case SyntaxKind.BigIntLiteral:
|
D | parser.ts | 3605 return token() === SyntaxKind.NumericLiteral || token() === SyntaxKind.BigIntLiteral; 3641 case SyntaxKind.BigIntLiteral: 3703 case SyntaxKind.BigIntLiteral: 4013 case SyntaxKind.BigIntLiteral: 5574 case SyntaxKind.BigIntLiteral: 6135 …)) || token() === SyntaxKind.NumericLiteral || token() === SyntaxKind.BigIntLiteral || token() ===…
|
D | emitter.ts | 1632 case SyntaxKind.BigIntLiteral: 1633 return emitNumericOrBigIntLiteral(<NumericLiteral | BigIntLiteral>node); 1827 function emitNumericOrBigIntLiteral(node: NumericLiteral | BigIntLiteral) {
|
D | scanner.ts | 1576 return SyntaxKind.BigIntLiteral;
|
/third_party/typescript/tests/baselines/reference/api/ |
D | typescript.d.ts | 115 BigIntLiteral = 9, enumerator 485 …export type LiteralSyntaxKind = SyntaxKind.NumericLiteral | SyntaxKind.BigIntLiteral | SyntaxKind.… 1179 export interface BigIntLiteral extends LiteralExpression { interface 1180 readonly kind: SyntaxKind.BigIntLiteral; 1182 …export type LiteralToken = NumericLiteral | BigIntLiteral | StringLiteral | JsxText | RegularExpre… 2498 BigIntLiteral = 2048, enumerator 3276 createBigIntLiteral(value: string | PseudoBigInt): BigIntLiteral; 4462 function isBigIntLiteral(node: Node): node is BigIntLiteral; 6285 BigIntLiteral = 7, enumerator 6594 const createBigIntLiteral: (value: string | PseudoBigInt) => BigIntLiteral;
|
D | tsserverlibrary.d.ts | 115 BigIntLiteral = 9, enumerator 485 …export type LiteralSyntaxKind = SyntaxKind.NumericLiteral | SyntaxKind.BigIntLiteral | SyntaxKind.… 1179 export interface BigIntLiteral extends LiteralExpression { interface 1180 readonly kind: SyntaxKind.BigIntLiteral; 1182 …export type LiteralToken = NumericLiteral | BigIntLiteral | StringLiteral | JsxText | RegularExpre… 2498 BigIntLiteral = 2048, enumerator 3276 createBigIntLiteral(value: string | PseudoBigInt): BigIntLiteral; 4462 function isBigIntLiteral(node: Node): node is BigIntLiteral; 6285 BigIntLiteral = 7, enumerator 10377 const createBigIntLiteral: (value: string | PseudoBigInt) => BigIntLiteral;
|
/third_party/typescript/lib/ |
D | typescriptServices.d.ts | 115 BigIntLiteral = 9, enumerator 485 …export type LiteralSyntaxKind = SyntaxKind.NumericLiteral | SyntaxKind.BigIntLiteral | SyntaxKind.… 1170 export interface BigIntLiteral extends LiteralExpression { interface 1171 readonly kind: SyntaxKind.BigIntLiteral; 1173 …export type LiteralToken = NumericLiteral | BigIntLiteral | StringLiteral | JsxText | RegularExpre… 2484 BigIntLiteral = 2048, enumerator 3200 createBigIntLiteral(value: string | PseudoBigInt): BigIntLiteral; 4381 function isBigIntLiteral(node: Node): node is BigIntLiteral; 6198 BigIntLiteral = 7, enumerator 6505 const createBigIntLiteral: (value: string | PseudoBigInt) => BigIntLiteral;
|
D | typescript.d.ts | 115 BigIntLiteral = 9, enumerator 485 …export type LiteralSyntaxKind = SyntaxKind.NumericLiteral | SyntaxKind.BigIntLiteral | SyntaxKind.… 1170 export interface BigIntLiteral extends LiteralExpression { interface 1171 readonly kind: SyntaxKind.BigIntLiteral; 1173 …export type LiteralToken = NumericLiteral | BigIntLiteral | StringLiteral | JsxText | RegularExpre… 2484 BigIntLiteral = 2048, enumerator 3200 createBigIntLiteral(value: string | PseudoBigInt): BigIntLiteral; 4381 function isBigIntLiteral(node: Node): node is BigIntLiteral; 6198 BigIntLiteral = 7, enumerator 6505 const createBigIntLiteral: (value: string | PseudoBigInt) => BigIntLiteral;
|
D | tsserverlibrary.d.ts | 115 BigIntLiteral = 9, enumerator 485 …export type LiteralSyntaxKind = SyntaxKind.NumericLiteral | SyntaxKind.BigIntLiteral | SyntaxKind.… 1170 export interface BigIntLiteral extends LiteralExpression { interface 1171 readonly kind: SyntaxKind.BigIntLiteral; 1173 …export type LiteralToken = NumericLiteral | BigIntLiteral | StringLiteral | JsxText | RegularExpre… 2484 BigIntLiteral = 2048, enumerator 3200 createBigIntLiteral(value: string | PseudoBigInt): BigIntLiteral; 4381 function isBigIntLiteral(node: Node): node is BigIntLiteral; 6198 BigIntLiteral = 7, enumerator 10250 const createBigIntLiteral: (value: string | PseudoBigInt) => BigIntLiteral;
|
/third_party/typescript_eslint/packages/typescript-estree/src/ |
D | convert.ts | 1946 case SyntaxKind.BigIntLiteral: { 1956 return this.createNode<TSESTree.BigIntLiteral>(node, {
|
/third_party/typescript/src/services/formatting/ |
D | rules.ts | 28 …SyntaxKind.NumericLiteral, SyntaxKind.BigIntLiteral, SyntaxKind.Identifier, SyntaxKind.OpenParenTo…
|
/third_party/typescript/src/compiler/transformers/ |
D | ts.ts | 1541 case SyntaxKind.BigIntLiteral:
|