Home
last modified time | relevance | path

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

123456

/third_party/typescript/lib/
Dlib.webworker.d.ts1176 readonly ABORT_ERR: number; variable
1177 readonly DATA_CLONE_ERR: number; variable
1178 readonly DOMSTRING_SIZE_ERR: number; variable
1179 readonly HIERARCHY_REQUEST_ERR: number; variable
1180 readonly INDEX_SIZE_ERR: number; variable
1181 readonly INUSE_ATTRIBUTE_ERR: number; variable
1182 readonly INVALID_ACCESS_ERR: number; variable
1183 readonly INVALID_CHARACTER_ERR: number; variable
1184 readonly INVALID_MODIFICATION_ERR: number; variable
1185 readonly INVALID_NODE_TYPE_ERR: number; variable
[all …]
Dlib.dom.d.ts1971 readonly FILTER_REJECT: number; variable
1972 readonly FILTER_SKIP: number; variable
1973 readonly SHOW_ALL: number; variable
1974 readonly SHOW_ATTRIBUTE: number; variable
1975 readonly SHOW_CDATA_SECTION: number; variable
1976 readonly SHOW_COMMENT: number; variable
1977 readonly SHOW_DOCUMENT: number; variable
1978 readonly SHOW_DOCUMENT_FRAGMENT: number; variable
1979 readonly SHOW_DOCUMENT_TYPE: number; variable
1980 readonly SHOW_ELEMENT: number; variable
[all …]
/third_party/typescript/src/lib/
Dwebworker.generated.d.ts1156 readonly ABORT_ERR: number; variable
1157 readonly DATA_CLONE_ERR: number; variable
1158 readonly DOMSTRING_SIZE_ERR: number; variable
1159 readonly HIERARCHY_REQUEST_ERR: number; variable
1160 readonly INDEX_SIZE_ERR: number; variable
1161 readonly INUSE_ATTRIBUTE_ERR: number; variable
1162 readonly INVALID_ACCESS_ERR: number; variable
1163 readonly INVALID_CHARACTER_ERR: number; variable
1164 readonly INVALID_MODIFICATION_ERR: number; variable
1165 readonly INVALID_NODE_TYPE_ERR: number; variable
[all …]
Ddom.generated.d.ts1951 readonly FILTER_REJECT: number; variable
1952 readonly FILTER_SKIP: number; variable
1953 readonly SHOW_ALL: number; variable
1954 readonly SHOW_ATTRIBUTE: number; variable
1955 readonly SHOW_CDATA_SECTION: number; variable
1956 readonly SHOW_COMMENT: number; variable
1957 readonly SHOW_DOCUMENT: number; variable
1958 readonly SHOW_DOCUMENT_FRAGMENT: number; variable
1959 readonly SHOW_DOCUMENT_TYPE: number; variable
1960 readonly SHOW_ELEMENT: 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
DstaticIndexSignature3.js3 static readonly [s: string]: number; field in B
4 static readonly [s: number]: 42 | 233 field in B
8 static readonly [s: string]: number field in D
12 static readonly [s: string]: boolean field in ED
13 static readonly [s: number]: 1 field in ED
17 static readonly [s: string]: 421 field in DD
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
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
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
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
DintersectionsAndReadonlyProperties.js3 type Intersection1 = { readonly a: number } & { a: number }; field
15 type IntersectionAllReadonly = { readonly a: number } & { get a(): number }; field
DstaticIndexSignature5.js3 static readonly [s: string]: number; field in B
4 static readonly [s: number]: 42 | 233 field in B
DdeclarationEmitExpressionWithNonlocalPrivateUniqueSymbol.js4 type AX = { readonly A: unique symbol }; field
25 readonly A: unique symbol; field
DreadonlyReadonly.js3 readonly readonly x: number; field in C
DstaticIndexSignature2.js3 static readonly [s: string]: number; field in C
4 static readonly [s: number]: 42 field in C
DstaticIndexSignature4.js3 static readonly [s: string]: number; field in B
4 static readonly [s: number]: 42 | 233 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
DexhaustiveSwitchWithWideningLiteralTypes.js5 readonly kind = "A"; // (property) A.kind: "A" field in A
9 readonly kind = "B"; // (property) B.kind: "B" field in B
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
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
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
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
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
/third_party/node/deps/undici/src/types/
Dwebsocket.d.ts73 readonly CLOSED: number constant
74 readonly CLOSING: number constant
75 readonly CONNECTING: number constant
76 readonly OPEN: number constant

123456