Home
last modified time | relevance | path

Searched refs:o6 (Results 1 – 25 of 109) sorted by relevance

12345

/third_party/typescript/tests/baselines/reference/
DdeleteChain.types142 declare const o6: { b?: { c: { d?: { e: string } } } };
143 >o6 : { b?: { c: { d?: { e: string; };}; } | undefined; }
149 delete o6.b?.['c'].d?.['e'];
150 >delete o6.b?.['c'].d?.['e'] : boolean
151 >o6.b?.['c'].d?.['e'] : string | undefined
152 >o6.b?.['c'].d : { e: string; } | undefined
153 >o6.b?.['c'] : { d?: { e: string; } | undefined; } | undefined
154 >o6.b : { c: { d?: { e: string; } | undefined; }; } | undefined
155 >o6 : { b?: { c: { d?: { e: string; } | undefined; }; } | undefined; }
161 delete (o6.b?.['c'].d?.['e']);
[all …]
DcontrolFlowOptionalChain.js123 declare const o6: Base | undefined;
124 if (o6?.f()) {
125 o6; // Derived
126 o6.f;
129 o6;
130 o6?.f;
131 o6.f;
133 o6;
134 o6?.f;
135 o6.f;
[all …]
DdeleteChain.symbols123 declare const o6: { b?: { c: { d?: { e: string } } } };
124 >o6 : Symbol(o6, Decl(deleteChain.ts, 21, 13))
130 delete o6.b?.['c'].d?.['e'];
131 >o6.b?.['c'].d : Symbol(d, Decl(deleteChain.ts, 21, 30))
132 >o6.b : Symbol(b, Decl(deleteChain.ts, 21, 19))
133 >o6 : Symbol(o6, Decl(deleteChain.ts, 21, 13))
137 delete (o6.b?.['c'].d?.['e']);
138 >o6.b?.['c'].d : Symbol(d, Decl(deleteChain.ts, 21, 30))
139 >o6.b : Symbol(b, Decl(deleteChain.ts, 21, 19))
140 >o6 : Symbol(o6, Decl(deleteChain.ts, 21, 13))
DdeleteChain.js23 declare const o6: { b?: { c: { d?: { e: string } } } };
24 delete o6.b?.['c'].d?.['e'];
25 delete (o6.b?.['c'].d?.['e']);
41 (_p = (_o = o6.b) === null || _o === void 0 ? void 0 : _o['c'].d) === null || _p === void 0 ? true …
42 ((_r = (_q = o6.b) === null || _q === void 0 ? void 0 : _q['c'].d) === null || _r === void 0 ? true…
DpropertyAccessChain.symbols72 declare const o6: <T>() => undefined | ({ x: number });
73 >o6 : Symbol(o6, Decl(propertyAccessChain.ts, 16, 13))
77 o6<number>()?.x;
78 >o6<number>()?.x : Symbol(x, Decl(propertyAccessChain.ts, 16, 41))
79 >o6 : Symbol(o6, Decl(propertyAccessChain.ts, 16, 13))
DpropertyAccessChain.types73 declare const o6: <T>() => undefined | ({ x: number });
74 >o6 : <T>() => undefined | ({ x: number;})
77 o6<number>()?.x;
78 >o6<number>()?.x : number | undefined
79 >o6<number>() : { x: number; } | undefined
80 >o6 : <T>() => { x: number; } | undefined
DpropertyAccessChain.js18 declare const o6: <T>() => undefined | ({ x: number });
19 o6<number>()?.x;
36 (_f = o6()) === null || _f === void 0 ? void 0 : _f.x;
DelementAccessChain.symbols101 declare const o6: <T>() => undefined | ({ x: number });
102 >o6 : Symbol(o6, Decl(elementAccessChain.ts, 22, 13))
106 o6<number>()?.["x"];
107 >o6 : Symbol(o6, Decl(elementAccessChain.ts, 22, 13))
DelementAccessChain.js24 declare const o6: <T>() => undefined | ({ x: number });
25 o6<number>()?.["x"];
47 (_q = o6()) === null || _q === void 0 ? void 0 : _q["x"];
Demitter.asyncGenerators.objectLiteralMethods.es2018.js33 const o6 = { variable
76 const o6 = { variable
Demitter.asyncGenerators.objectLiteralMethods.es2015.symbols54 const o6 = {
55 >o6 : Symbol(o6, Decl(O6.ts, 0, 5))
Demitter.asyncGenerators.objectLiteralMethods.es5.symbols54 const o6 = {
55 >o6 : Symbol(o6, Decl(O6.ts, 0, 5))
Demitter.asyncGenerators.objectLiteralMethods.es2018.symbols54 const o6 = {
55 >o6 : Symbol(o6, Decl(O6.ts, 0, 5))
/third_party/skia/third_party/externals/spirv-cross/shaders-msl/asm/frag/
Ddisable-renamed-output.frag-output.asm.frag11 OpEntryPoint Fragment %main "main" %o0 %o1 %o2 %o3 %o4 %o5 %o6 %o7 %oDepth %oStencil
23 OpName %o6 "o6"
33 OpDecorate %o6 Location 6
58 %o6 = OpVariable %_ptr_Output_v4float Output
78 OpStore %o6 %27
/third_party/typescript/tests/cases/conformance/controlFlow/
DcontrolFlowOptionalChain.ts125 declare const o6: Base | undefined; constant
126 if (o6?.f()) {
127 o6; // Derived
128 o6.f;
131 o6;
132 o6?.f;
133 o6.f;
135 o6;
136 o6?.f;
137 o6.f;
/third_party/typescript/tests/cases/conformance/expressions/optionalChaining/delete/
DdeleteChain.ts24 declare const o6: { b?: { c: { d?: { e: string } } } }; constant
25 delete o6.b?.['c'].d?.['e'];
26 delete (o6.b?.['c'].d?.['e']);
/third_party/jerryscript/tests/jerry/es2015/
Dobject-prototype-proto.js74 var o6 = { __proto__() { return "42" } }; variable
75 assert(o6.__proto__() === "42");
76 assert(Object.getPrototypeOf(o6) === Object.prototype);
/third_party/typescript/tests/cases/conformance/expressions/optionalChaining/propertyAccessChain/
DpropertyAccessChain.ts19 declare const o6: <T>() => undefined | ({ x: number }); constant
20 o6<number>()?.x;
/third_party/typescript/tests/cases/conformance/expressions/optionalChaining/elementAccessChain/
DelementAccessChain.ts25 declare const o6: <T>() => undefined | ({ x: number }); constant
26 o6<number>()?.["x"];
/third_party/skia/third_party/externals/spirv-cross/reference/shaders-msl/asm/frag/
Ddisable-renamed-output.frag-output.asm.frag10 float4 o6 [[color(6)]];
29 out.o6 = float4(0.75);
/third_party/skia/third_party/externals/spirv-cross/reference/opt/shaders-msl/asm/frag/
Ddisable-renamed-output.frag-output.asm.frag10 float4 o6 [[color(6)]];
29 out.o6 = float4(0.75);
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/shaders/compiled/
Dclearsint11ps7.h57 dcl_output o6.xyzw
65 mov o6.xyzw, cb0[0].xyzw
Dclearuint11ps7.h57 dcl_output o6.xyzw
65 mov o6.xyzw, cb0[0].xyzw
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/shaders/compiled/
Dclearfloat11ps7.h57 dcl_output o6.xyzw
65 mov o6.xyzw, cb0[0].xyzw
Dclearsint11ps7.h57 dcl_output o6.xyzw
65 mov o6.xyzw, cb0[0].xyzw

12345