Home
last modified time | relevance | path

Searched refs:BigIntLiteral (Results 1 – 25 of 31) sorted by relevance

12

/third_party/typescript/tests/baselines/reference/user/
Dwebpack.log7 … 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/
DtypeSerializer.ts303 case SyntaxKind.BigIntLiteral:
304 … return serializeLiteralOfLiteralTypeNode(operand as NumericLiteral | BigIntLiteral);
313 case SyntaxKind.BigIntLiteral:
/third_party/typescript/src/services/
Dclassifier.ts186 SyntaxKind.BigIntLiteral,
291 case ClassificationType.bigintLiteral: return TokenClass.BigIntLiteral;
434 case SyntaxKind.BigIntLiteral:
1029 else if (tokenKind === SyntaxKind.BigIntLiteral) {
Dtypes.ts1391 BigIntLiteral, enumerator
/third_party/node/deps/v8/src/numbers/
Dconversions.h112 MaybeHandle<BigInt> BigIntLiteral(IsolateT* isolate, const char* string);
Dconversions.cc1027 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/
DfixStrictClassInitialization.ts137 else if (type.flags & TypeFlags.BigIntLiteral) {
DfixAddMissingMember.ts551 if (type.flags & TypeFlags.BigIntLiteral) {
/third_party/typescript/src/compiler/factory/
DnodeTests.ts8 export function isBigIntLiteral(node: Node): node is BigIntLiteral {
9 return node.kind === SyntaxKind.BigIntLiteral;
DnodeFactory.ts807 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/
Dconstant-array-builder.cc397 return BigIntLiteral(isolate, bigint_.c_str()).ToHandleChecked(); in ToHandle()
/third_party/node/deps/v8/src/parsing/
Dscanner.h339 base::Vector<const uint8_t> BigIntLiteral() const { in BigIntLiteral() function
/third_party/typescript/src/compiler/
Dtypes.ts35 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;
Ddebug.ts574 …this.flags & TypeFlags.BigIntLiteral ? `LiteralType ${(this as BigIntLiteralType).value.negative ?…
Dparser.ts4230 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() ===…
Dchecker.ts5292 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 …]
Demitter.ts1725 case SyntaxKind.BigIntLiteral:
1726 return emitNumericOrBigIntLiteral(node as NumericLiteral | BigIntLiteral);
1938 function emitNumericOrBigIntLiteral(node: NumericLiteral | BigIntLiteral) {
/third_party/node/deps/v8/src/ast/
Dast.cc1040 return BigIntLiteral(isolate, bigint_.c_str()).ToHandleChecked(); in BuildValue()
/third_party/typescript/lib/
Dtypescript.d.ts115 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;
DtypescriptServices.d.ts115 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;
Dtsserverlibrary.d.ts115 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/
Dtypescript.d.ts115 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;
Dtsserverlibrary.d.ts115 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/
Drules.ts28 …SyntaxKind.NumericLiteral, SyntaxKind.BigIntLiteral, SyntaxKind.Identifier, SyntaxKind.OpenParenTo…
/third_party/typescript/src/linter/ArkTSLinter_1_0/
DTypeScriptLinter.ts947 if (!(tsOperatndType.getFlags() & (TypeFlags.NumberLike | TypeFlags.BigIntLiteral)) ||

12