Home
last modified time | relevance | path

Searched defs:readonly (Results 1 – 25 of 129) sorted by relevance

123456

/third_party/typescript/src/lib/
Dwebworker.generated.d.ts1057 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 …]
Ddom.generated.d.ts2230 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/
Dlib.webworker.d.ts1077 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 …]
Dlib.dom.d.ts2250 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/
DtypeOfEnumAndVarRedeclarations.ts8 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/
DdeclarationEmitPrivateReadonlyLiterals.js3 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
DclassDeclarationShouldBeOutOfScopeInComputedNames.js3 static readonly p1 = Symbol(); field in A
4 static readonly p2 = Symbol(); field in A
6 static readonly [A.p1] = 0; field in A
DvarianceProblingAndZeroOrderIndexSignatureRelationsAlign2.js5 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
DvarianceProblingAndZeroOrderIndexSignatureRelationsAlign.js5 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
DdeclarationEmitExpressionWithNonlocalPrivateUniqueSymbol.js4 type AX = { readonly A: unique symbol }; field
25 readonly A: unique symbol; field
DmappedTypes6.js7 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
DreadonlyReadonly.js3 readonly readonly x: number; field in C
DexhaustiveSwitchWithWideningLiteralTypes.js5 readonly kind = "A"; // (property) A.kind: "A" field in A
9 readonly kind = "B"; // (property) B.kind: "B" field in B
DmappedTypes5.js28 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
DexcessPropertyCheckWithEmptyObject.js5 Object.defineProperty(window, "prop", { value: "v1.0.0", readonly: false }); property
21 Object.defineProperty(window, "prop", { value: "v1.0.0", readonly: false }); property
DmappedTypes4.js44 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
DliteralTypes2.js76 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
DreadonlyInDeclarationFile.js8 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
DuniqueSymbolsDeclarations.js98 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
DclassMergedWithInterfaceMultipleBasesNoError.js9 readonly observer = this.handleIntersection; field in AnonymousClasse83e10d10101
10 readonly handleIntersection = () => { } field in AnonymousClasse83e10d10101
DprivateNameComputedPropertyName1(target=esnext).js6 readonly #c = 'c'; field in A
7 readonly #d: string; field in A
DprivateNameComputedPropertyName1(target=es2015).js6 readonly #c = 'c'; field in A
7 readonly #d: string; field in A
DuniqueSymbols.js102 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
DmappedTypeWithCombinedTypeMappers.js5 readonly[P in keyof T]: { field
/third_party/typescript/tests/cases/conformance/enums/
DenumBasics.ts15 readonly B: E1.B; variable
16 readonly C: E1.C; variable
17 readonly [n: number]: string; variable

123456