/third_party/typescript/src/lib/ |
D | webworker.generated.d.ts | 1057 readonly ABORT_ERR: number; variable 1058 readonly DATA_CLONE_ERR: number; variable 1059 readonly DOMSTRING_SIZE_ERR: number; variable 1060 readonly HIERARCHY_REQUEST_ERR: number; variable 1061 readonly INDEX_SIZE_ERR: number; variable 1062 readonly INUSE_ATTRIBUTE_ERR: number; variable 1063 readonly INVALID_ACCESS_ERR: number; variable 1064 readonly INVALID_CHARACTER_ERR: number; variable 1065 readonly INVALID_MODIFICATION_ERR: number; variable 1066 readonly INVALID_NODE_TYPE_ERR: number; variable [all …]
|
D | dom.generated.d.ts | 2230 readonly CHECKING: number; variable 2231 readonly DOWNLOADING: number; variable 2232 readonly IDLE: number; variable 2233 readonly OBSOLETE: number; variable 2234 readonly UNCACHED: number; variable 2235 readonly UPDATEREADY: number; variable 2783 readonly CHARSET_RULE: number; variable 2784 readonly FONT_FACE_RULE: number; variable 2785 readonly IMPORT_RULE: number; variable 2786 readonly KEYFRAMES_RULE: number; variable [all …]
|
/third_party/typescript/lib/ |
D | lib.webworker.d.ts | 1077 readonly ABORT_ERR: number; variable 1078 readonly DATA_CLONE_ERR: number; variable 1079 readonly DOMSTRING_SIZE_ERR: number; variable 1080 readonly HIERARCHY_REQUEST_ERR: number; variable 1081 readonly INDEX_SIZE_ERR: number; variable 1082 readonly INUSE_ATTRIBUTE_ERR: number; variable 1083 readonly INVALID_ACCESS_ERR: number; variable 1084 readonly INVALID_CHARACTER_ERR: number; variable 1085 readonly INVALID_MODIFICATION_ERR: number; variable 1086 readonly INVALID_NODE_TYPE_ERR: number; variable [all …]
|
D | lib.dom.d.ts | 2250 readonly CHECKING: number; variable 2251 readonly DOWNLOADING: number; variable 2252 readonly IDLE: number; variable 2253 readonly OBSOLETE: number; variable 2254 readonly UNCACHED: number; variable 2255 readonly UPDATEREADY: number; variable 2803 readonly CHARSET_RULE: number; variable 2804 readonly FONT_FACE_RULE: number; variable 2805 readonly IMPORT_RULE: number; variable 2806 readonly KEYFRAMES_RULE: number; variable [all …]
|
/third_party/typescript/tests/cases/compiler/ |
D | typeOfEnumAndVarRedeclarations.ts | 8 var x: { readonly a: E; readonly b: E; readonly [x: number]: string; }; // Shouldnt error variable 10 var y: { readonly a: E; readonly b: E; readonly [x: number]: string; readonly [x: number]: string }… variable
|
/third_party/typescript/tests/baselines/reference/ |
D | declarationEmitPrivateReadonlyLiterals.js | 3 private static readonly A = "a"; field in Foo 4 private readonly B = "b"; field in Foo 5 private static readonly C = 42; field in Foo 6 private readonly D = 42; field in Foo
|
D | classDeclarationShouldBeOutOfScopeInComputedNames.js | 3 static readonly p1 = Symbol(); field in A 4 static readonly p2 = Symbol(); field in A 6 static readonly [A.p1] = 0; field in A
|
D | varianceProblingAndZeroOrderIndexSignatureRelationsAlign2.js | 5 readonly _tag: 'Left' = 'Left' field in Left 6 readonly _A!: A field in Left 7 readonly _L!: L field in Left 19 readonly _tag: 'Right' = 'Right' field in Right 20 readonly _A!: A field in Right 21 readonly _L!: L field in Right 32 readonly _A!: A; field in Type 33 readonly _O!: O; field in Type 34 readonly _I!: I; field in Type
|
D | varianceProblingAndZeroOrderIndexSignatureRelationsAlign.js | 5 readonly _tag: 'Left' = 'Left' field in Left 6 readonly _A!: A field in Left 7 readonly _L!: L field in Left 19 readonly _tag: 'Right' = 'Right' field in Right 20 readonly _A!: A field in Right 21 readonly _L!: L field in Right 32 readonly _A!: A; field in Type 33 readonly _O!: O; field in Type 34 readonly _I!: I; field in Type
|
D | declarationEmitExpressionWithNonlocalPrivateUniqueSymbol.js | 4 type AX = { readonly A: unique symbol }; field 25 readonly A: unique symbol; field
|
D | mappedTypes6.js | 7 type T04<T> = { readonly [P in keyof T]: T[P] }; field 8 type T05<T> = { readonly [P in keyof T]?: T[P] }; field 9 type T06<T> = { readonly [P in keyof T]+?: T[P] }; field 10 type T07<T> = { readonly [P in keyof T]-?: T[P] }; field 214 readonly [P in keyof T]: T[P]; field 217 readonly [P in keyof T]?: T[P]; field 220 readonly [P in keyof T]+?: T[P]; field 223 readonly [P in keyof T]-?: T[P]; field
|
D | readonlyReadonly.js | 3 readonly readonly x: number; field in C
|
D | exhaustiveSwitchWithWideningLiteralTypes.js | 5 readonly kind = "A"; // (property) A.kind: "A" field in A 9 readonly kind = "B"; // (property) B.kind: "B" field in B
|
D | mappedTypes5.js | 28 readonly previous: Readonly<Partial<T>>; field 33 readonly previous: Partial<Readonly<T>>; field 47 readonly previous: Readonly<Partial<State2>>; field 52 readonly previous: Partial<Readonly<State2>>; field
|
D | excessPropertyCheckWithEmptyObject.js | 5 Object.defineProperty(window, "prop", { value: "v1.0.0", readonly: false }); property 21 Object.defineProperty(window, "prop", { value: "v1.0.0", readonly: false }); property
|
D | mappedTypes4.js | 44 readonly [P in keyof T]: DeepReadonly<T[P]>; field 54 readonly x: number; field 123 readonly [P in keyof T]: DeepReadonly<T[P]>; field 134 readonly x: number; field
|
D | literalTypes2.js | 76 readonly c1 = 1; field in C1 77 readonly c2 = -123; field in C1 78 readonly c3 = 3 + 4; field in C1 79 readonly c4 = "abc"; field in C1 80 readonly c5 = ""; field in C1 81 readonly c6 = "abc" + "def"; field in C1 82 readonly c7 = true; field in C1 83 readonly c8 = E.A; field in C1
|
D | readonlyInDeclarationFile.js | 8 readonly [x: string]: Object; field in C 9 private readonly a1: number; field in C 10 protected readonly a2: number; field in C 11 public readonly a3: number; field in C 21 private static readonly s1: number; field in C 22 protected static readonly s2: number; field in C 23 public static readonly s3: number; field in C
|
D | uniqueSymbolsDeclarations.js | 98 readonly readonlyType: unique symbol; field 151 static readonly a = s; field in C0 152 static readonly b = N.s; field in C0 153 static readonly c = N["s"]; field in C0 159 readonly a = s; field in C0 160 readonly b = N.s; field in C0 161 readonly c = N["s"]; field in C0 474 readonly readonlyType: unique symbol; field
|
D | classMergedWithInterfaceMultipleBasesNoError.js | 9 readonly observer = this.handleIntersection; field in AnonymousClasse83e10d10101 10 readonly handleIntersection = () => { } field in AnonymousClasse83e10d10101
|
D | privateNameComputedPropertyName1(target=esnext).js | 6 readonly #c = 'c'; field in A 7 readonly #d: string; field in A
|
D | privateNameComputedPropertyName1(target=es2015).js | 6 readonly #c = 'c'; field in A 7 readonly #d: string; field in A
|
D | uniqueSymbols.js | 102 readonly readonlyType: unique symbol; field 155 static readonly a = s; field in C0 156 static readonly b = N.s; field in C0 157 static readonly c = N["s"]; field in C0 163 readonly a = s; field in C0 164 readonly b = N.s; field in C0 165 readonly c = N["s"]; field in C0
|
D | mappedTypeWithCombinedTypeMappers.js | 5 readonly[P in keyof T]: { field
|
/third_party/typescript/tests/cases/conformance/enums/ |
D | enumBasics.ts | 15 readonly B: E1.B; variable 16 readonly C: E1.C; variable 17 readonly [n: number]: string; variable
|