/third_party/typescript/tests/baselines/reference/user/ |
D | webpack.log | 7 … on type 'Record<string, Identifier | SimpleLiteral | RegExpLiteral | BigIntLiteral | FunctionExpr… 9 … on type 'Record<string, Identifier | SimpleLiteral | RegExpLiteral | BigIntLiteral | FunctionExpr…
|
/third_party/typescript/src/compiler/transformers/ |
D | typeSerializer.ts | 303 case SyntaxKind.BigIntLiteral: 304 … return serializeLiteralOfLiteralTypeNode(operand as NumericLiteral | BigIntLiteral); 313 case SyntaxKind.BigIntLiteral:
|
/third_party/typescript/src/services/ |
D | classifier.ts | 186 SyntaxKind.BigIntLiteral, 291 case ClassificationType.bigintLiteral: return TokenClass.BigIntLiteral; 434 case SyntaxKind.BigIntLiteral: 1029 else if (tokenKind === SyntaxKind.BigIntLiteral) {
|
D | types.ts | 1391 BigIntLiteral, enumerator
|
/third_party/node/deps/v8/src/numbers/ |
D | conversions.h | 112 MaybeHandle<BigInt> BigIntLiteral(IsolateT* isolate, const char* string);
|
D | conversions.cc | 1027 MaybeHandle<BigInt> BigIntLiteral(IsolateT* isolate, const char* string) { in BigIntLiteral() function 1034 MaybeHandle<BigInt> BigIntLiteral(Isolate* isolate, const char* string); 1036 MaybeHandle<BigInt> BigIntLiteral(LocalIsolate* isolate,
|
/third_party/typescript/src/services/codefixes/ |
D | fixStrictClassInitialization.ts | 137 else if (type.flags & TypeFlags.BigIntLiteral) {
|
D | fixAddMissingMember.ts | 551 if (type.flags & TypeFlags.BigIntLiteral) {
|
/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 | 807 function createBigIntLiteral(value: string | PseudoBigInt): BigIntLiteral { 808 …const node = createBaseLiteral<BigIntLiteral>(SyntaxKind.BigIntLiteral, typeof value === "string" … 844 case SyntaxKind.BigIntLiteral: return createBigIntLiteral(text); 5944 case SyntaxKind.BigIntLiteral:
|
/third_party/node/deps/v8/src/interpreter/ |
D | constant-array-builder.cc | 397 return BigIntLiteral(isolate, bigint_.c_str()).ToHandleChecked(); in ToHandle()
|
/third_party/node/deps/v8/src/parsing/ |
D | scanner.h | 339 base::Vector<const uint8_t> BigIntLiteral() const { in BigIntLiteral() function
|
/third_party/typescript/src/compiler/ |
D | types.ts | 35 BigIntLiteral, enumerator 480 | SyntaxKind.BigIntLiteral 2589 export interface BigIntLiteral extends LiteralExpression { 2590 readonly kind: SyntaxKind.BigIntLiteral; 2595 | BigIntLiteral 5669 BigIntLiteral = 1 << 11, 5692 Literal = StringLiteral | NumberLiteral | BigIntLiteral | BooleanLiteral, 5698 …DefinitelyFalsy = StringLiteral | NumberLiteral | BigIntLiteral | BooleanLiteral | Void | Undefine… 5706 BigIntLike = BigInt | BigIntLiteral, 7814 createBigIntLiteral(value: string | PseudoBigInt): BigIntLiteral;
|
D | debug.ts | 574 …this.flags & TypeFlags.BigIntLiteral ? `LiteralType ${(this as BigIntLiteralType).value.negative ?…
|
D | parser.ts | 4230 return token() === SyntaxKind.NumericLiteral || token() === SyntaxKind.BigIntLiteral; 4266 case SyntaxKind.BigIntLiteral: 4328 case SyntaxKind.BigIntLiteral: 4641 case SyntaxKind.BigIntLiteral: 6311 case SyntaxKind.BigIntLiteral: 6863 …)) || token() === SyntaxKind.NumericLiteral || token() === SyntaxKind.BigIntLiteral || token() ===…
|
D | checker.ts | 5292 if (type.flags & TypeFlags.BigIntLiteral) { 15008 flags & TypeFlags.BigIntLiteral && includes & TypeFlags.BigInt || 15257 t.flags & TypeFlags.BigInt && includes & TypeFlags.BigIntLiteral || 15275 type.flags & TypeFlags.BigIntLiteral ? bigintType : 15420 includes & TypeFlags.BigInt && includes & TypeFlags.BigIntLiteral || 15809 … type.flags & TypeFlags.BigIntLiteral ? pseudoBigIntToString((type as BigIntLiteralType).value) : 16974 …(bigIntLiteralTypes.set(key, type = createLiteralType(TypeFlags.BigIntLiteral, value) as BigIntLit… 21768 type.flags & TypeFlags.BigIntLiteral ? bigintType : 21783 type.flags & TypeFlags.BigIntLiteral && isFreshLiteralType(type) ? bigintType : 21886 … type.flags & TypeFlags.BigIntLiteral && isZeroBigInt(type as BigIntLiteralType) ? type : [all …]
|
D | emitter.ts | 1725 case SyntaxKind.BigIntLiteral: 1726 return emitNumericOrBigIntLiteral(node as NumericLiteral | BigIntLiteral); 1938 function emitNumericOrBigIntLiteral(node: NumericLiteral | BigIntLiteral) {
|
/third_party/node/deps/v8/src/ast/ |
D | ast.cc | 1040 return BigIntLiteral(isolate, bigint_.c_str()).ToHandleChecked(); in BuildValue()
|
/third_party/typescript/lib/ |
D | typescript.d.ts | 115 BigIntLiteral = 9, enumerator 505 …export type LiteralSyntaxKind = SyntaxKind.NumericLiteral | SyntaxKind.BigIntLiteral | SyntaxKind.… 1243 export interface BigIntLiteral extends LiteralExpression { interface 1244 readonly kind: SyntaxKind.BigIntLiteral; 1246 …export type LiteralToken = NumericLiteral | BigIntLiteral | StringLiteral | JsxText | RegularExpre… 2726 BigIntLiteral = 2048, enumerator 3598 createBigIntLiteral(value: string | PseudoBigInt): BigIntLiteral; 4994 function isBigIntLiteral(node: Node): node is BigIntLiteral; 7090 BigIntLiteral = 7, enumerator 7448 const createBigIntLiteral: (value: string | PseudoBigInt) => BigIntLiteral;
|
D | typescriptServices.d.ts | 115 BigIntLiteral = 9, enumerator 505 …export type LiteralSyntaxKind = SyntaxKind.NumericLiteral | SyntaxKind.BigIntLiteral | SyntaxKind.… 1243 export interface BigIntLiteral extends LiteralExpression { interface 1244 readonly kind: SyntaxKind.BigIntLiteral; 1246 …export type LiteralToken = NumericLiteral | BigIntLiteral | StringLiteral | JsxText | RegularExpre… 2726 BigIntLiteral = 2048, enumerator 3598 createBigIntLiteral(value: string | PseudoBigInt): BigIntLiteral; 4994 function isBigIntLiteral(node: Node): node is BigIntLiteral; 7090 BigIntLiteral = 7, enumerator 7448 const createBigIntLiteral: (value: string | PseudoBigInt) => BigIntLiteral;
|
D | tsserverlibrary.d.ts | 115 BigIntLiteral = 9, enumerator 505 …export type LiteralSyntaxKind = SyntaxKind.NumericLiteral | SyntaxKind.BigIntLiteral | SyntaxKind.… 1243 export interface BigIntLiteral extends LiteralExpression { interface 1244 readonly kind: SyntaxKind.BigIntLiteral; 1246 …export type LiteralToken = NumericLiteral | BigIntLiteral | StringLiteral | JsxText | RegularExpre… 2726 BigIntLiteral = 2048, enumerator 3598 createBigIntLiteral(value: string | PseudoBigInt): BigIntLiteral; 4994 function isBigIntLiteral(node: Node): node is BigIntLiteral; 7090 BigIntLiteral = 7, enumerator 11387 const createBigIntLiteral: (value: string | PseudoBigInt) => BigIntLiteral;
|
/third_party/typescript/tests/baselines/reference/api/ |
D | typescript.d.ts | 115 BigIntLiteral = 9, enumerator 505 …export type LiteralSyntaxKind = SyntaxKind.NumericLiteral | SyntaxKind.BigIntLiteral | SyntaxKind.… 1243 export interface BigIntLiteral extends LiteralExpression { interface 1244 readonly kind: SyntaxKind.BigIntLiteral; 1246 …export type LiteralToken = NumericLiteral | BigIntLiteral | StringLiteral | JsxText | RegularExpre… 2726 BigIntLiteral = 2048, enumerator 3598 createBigIntLiteral(value: string | PseudoBigInt): BigIntLiteral; 4994 function isBigIntLiteral(node: Node): node is BigIntLiteral; 7090 BigIntLiteral = 7, enumerator 7448 const createBigIntLiteral: (value: string | PseudoBigInt) => BigIntLiteral;
|
D | tsserverlibrary.d.ts | 115 BigIntLiteral = 9, enumerator 505 …export type LiteralSyntaxKind = SyntaxKind.NumericLiteral | SyntaxKind.BigIntLiteral | SyntaxKind.… 1243 export interface BigIntLiteral extends LiteralExpression { interface 1244 readonly kind: SyntaxKind.BigIntLiteral; 1246 …export type LiteralToken = NumericLiteral | BigIntLiteral | StringLiteral | JsxText | RegularExpre… 2726 BigIntLiteral = 2048, enumerator 3598 createBigIntLiteral(value: string | PseudoBigInt): BigIntLiteral; 4994 function isBigIntLiteral(node: Node): node is BigIntLiteral; 7090 BigIntLiteral = 7, enumerator 11387 const createBigIntLiteral: (value: string | PseudoBigInt) => BigIntLiteral;
|
/third_party/typescript/src/services/formatting/ |
D | rules.ts | 28 …SyntaxKind.NumericLiteral, SyntaxKind.BigIntLiteral, SyntaxKind.Identifier, SyntaxKind.OpenParenTo…
|
/third_party/typescript/src/linter/ArkTSLinter_1_0/ |
D | TypeScriptLinter.ts | 947 if (!(tsOperatndType.getFlags() & (TypeFlags.NumberLike | TypeFlags.BigIntLiteral)) ||
|