Home
last modified time | relevance | path

Searched refs:LiteralType (Results 1 – 25 of 29) sorted by relevance

12

/third_party/typescript/tests/baselines/reference/
DdoNotInferUnrelatedTypes.types7 type LiteralType = "foo" | "bar";
8 >LiteralType : "foo" | "bar"
10 declare var alt: Array<LiteralType>;
11 >alt : LiteralType[]
13 let foo: LiteralType = dearray(alt);
14 >foo : LiteralType
15 >dearray(alt) : LiteralType
17 >alt : LiteralType[]
DdoNotInferUnrelatedTypes.symbols11 type LiteralType = "foo" | "bar";
12 >LiteralType : Symbol(LiteralType, Decl(doNotInferUnrelatedTypes.ts, 1, 54))
14 declare var alt: Array<LiteralType>;
17 >LiteralType : Symbol(LiteralType, Decl(doNotInferUnrelatedTypes.ts, 1, 54))
19 let foo: LiteralType = dearray(alt);
21 >LiteralType : Symbol(LiteralType, Decl(doNotInferUnrelatedTypes.ts, 1, 54))
DdoNotInferUnrelatedTypes.js4 type LiteralType = "foo" | "bar";
5 declare var alt: Array<LiteralType>;
7 let foo: LiteralType = dearray(alt);
DreverseMappedTypeAssignableToIndex.symbols21 // Note that in the real code we don't have a direct reference to LiteralType
22 type LiteralType = {
23 >LiteralType : Symbol(LiteralType, Decl(reverseMappedTypeAssignableToIndex.ts, 2, 64))
DreverseMappedTypeAssignableToIndex.types11 // Note that in the real code we don't have a direct reference to LiteralType
12 type LiteralType = {
13 >LiteralType : { first: "first"; second: "second"; }
DreverseMappedTypeAssignableToIndex.js8 type LiteralType = {
/third_party/typescript/tests/cases/compiler/
DdoNotInferUnrelatedTypes.ts3 type LiteralType = "foo" | "bar";
4 declare var alt: Array<LiteralType>;
6 let foo: LiteralType = dearray(alt);
DreverseMappedTypeAssignableToIndex.ts7 type LiteralType = { alias
/third_party/skia/src/sksl/ir/
DSkSLType.cpp93 class LiteralType : public Type { class
97 LiteralType(const char* name, const Type& scalarType, int8_t priority) in LiteralType() function in SkSL::LiteralType
434 return std::make_unique<LiteralType>(name, scalarType, priority); in MakeLiteralType()
/third_party/typescript/src/compiler/transformers/
DtypeSerializer.ts233 case SyntaxKind.LiteralType:
Dts.ts434 case SyntaxKind.LiteralType:
/third_party/typescript/src/compiler/
Dtypes.ts241 LiteralType, enumerator
697 | SyntaxKind.LiteralType
2100 readonly kind: SyntaxKind.LiteralType;
5777 export type FreshableType = LiteralType | FreshableIntrinsicType;
5782 export interface LiteralType extends Type {
5784 freshType: LiteralType; // Fresh version of type
5785 regularType: LiteralType; // Regular version of type
5794 export interface StringLiteralType extends LiteralType {
5798 export interface NumberLiteralType extends LiteralType {
5802 export interface BigIntLiteralType extends LiteralType {
Ddebug.ts573 … & TypeFlags.StringOrNumberLiteral ? `LiteralType ${JSON.stringify((this as LiteralType).value)}` :
Dchecker.ts784 const enumLiteralTypes = new Map<string, LiteralType>();
8533 … t.flags & TypeFlags.BooleanLiteral ? booleanType : getBaseTypeOfEnumLiteralType(t as LiteralType);
10928 case SyntaxKind.LiteralType:
13225 if (type && type.kind === SyntaxKind.LiteralType) {
14970 isFreshLiteralType(t) && containsType(types, (t as LiteralType).regularType);
16887 …gs: TypeFlags, value: string | number | PseudoBigInt, symbol?: Symbol, regularType?: LiteralType) {
16888 const type = createType(flags) as LiteralType;
16897 if (!(type as LiteralType).freshType) {
16898 … = createLiteralType(type.flags, (type as LiteralType).value, (type as LiteralType).symbol, type a…
16900 (type as LiteralType).freshType = freshType;
[all …]
DvisitorPublic.ts692 …[SyntaxKind.LiteralType]: function visitEachChildOfLiteralTypeNode(node, visitor, context, _nodesV…
/third_party/typescript/src/services/
Dtypes.ts71 isLiteral(): this is LiteralType; property
DstringCompletions.ts169 case SyntaxKind.LiteralType: {
Dservices.ts527 isLiteral(): this is LiteralType {
Dutilities.ts332 case SyntaxKind.LiteralType:
/third_party/typescript/src/compiler/factory/
DnodeTests.ts311 return node.kind === SyntaxKind.LiteralType;
/third_party/typescript/lib/
Dtypescript.d.ts307 LiteralType = 199, enumerator
1033 readonly kind: SyntaxKind.LiteralType;
2760 export interface LiteralType extends Type { interface
2762 freshType: LiteralType;
2763 regularType: LiteralType;
2769 export interface StringLiteralType extends LiteralType {
2772 export interface NumberLiteralType extends LiteralType {
2775 export interface BigIntLiteralType extends LiteralType {
6102 isLiteral(): this is LiteralType; property
DtypescriptServices.d.ts307 LiteralType = 199, enumerator
1033 readonly kind: SyntaxKind.LiteralType;
2760 export interface LiteralType extends Type { interface
2762 freshType: LiteralType;
2763 regularType: LiteralType;
2769 export interface StringLiteralType extends LiteralType {
2772 export interface NumberLiteralType extends LiteralType {
2775 export interface BigIntLiteralType extends LiteralType {
6102 isLiteral(): this is LiteralType; property
Dtsserverlibrary.d.ts307 LiteralType = 199, enumerator
1033 readonly kind: SyntaxKind.LiteralType;
2760 export interface LiteralType extends Type { interface
2762 freshType: LiteralType;
2763 regularType: LiteralType;
2769 export interface StringLiteralType extends LiteralType {
2772 export interface NumberLiteralType extends LiteralType {
2775 export interface BigIntLiteralType extends LiteralType {
6102 isLiteral(): this is LiteralType; property
/third_party/typescript/tests/baselines/reference/api/
Dtypescript.d.ts307 LiteralType = 199, enumerator
1033 readonly kind: SyntaxKind.LiteralType;
2760 export interface LiteralType extends Type { interface
2762 freshType: LiteralType;
2763 regularType: LiteralType;
2769 export interface StringLiteralType extends LiteralType {
2772 export interface NumberLiteralType extends LiteralType {
2775 export interface BigIntLiteralType extends LiteralType {
6102 isLiteral(): this is LiteralType; property
Dtsserverlibrary.d.ts307 LiteralType = 199, enumerator
1033 readonly kind: SyntaxKind.LiteralType;
2760 export interface LiteralType extends Type { interface
2762 freshType: LiteralType;
2763 regularType: LiteralType;
2769 export interface StringLiteralType extends LiteralType {
2772 export interface NumberLiteralType extends LiteralType {
2775 export interface BigIntLiteralType extends LiteralType {
6102 isLiteral(): this is LiteralType; property

12