Home
last modified time | relevance | path

Searched refs:qux (Results 1 – 25 of 124) sorted by relevance

12345

/third_party/typescript/tests/baselines/reference/
DobjectRestReadonly.types18 >{ foo: 'bar', baz: 'qux', quux: 'quuz',} : { foo: string; baz: string; quux: string; }
24 baz: 'qux',
26 >'qux' : "qux"
DprivateNameDeclaration.js6 qux = 6; field in A
19 this.qux = 6;
31 qux: number;
DprivateNameAndPropertySignature.types28 declare const y: [{ qux: { #quux: 3 } }];
29 >y : [{ qux: { #quux: 3;}; }]
30 >qux : {}
DprivateNameDeclaration.symbols14 qux = 6;
15 >qux : Symbol(A.qux, Decl(privateNameDeclaration.ts, 3, 16))
DdestructuringPropertyAssignmentNameIsNotAssignmentTarget.symbols3 function qux(bar: { value: number }) {
4 >qux : Symbol(qux, Decl(destructuringPropertyAssignmentNameIsNotAssignmentTarget.ts, 0, 0))
DprivateNamesIncompatibleModifiers.symbols14 readonly #qux = 3; // OK
15 >#qux : Symbol(A.#qux, Decl(privateNamesIncompatibleModifiers.ts, 3, 23))
DprivateNameAndPropertySignature.symbols30 declare const y: [{ qux: { #quux: 3 } }];
32 >qux : Symbol(qux, Decl(privateNameAndPropertySignature.ts, 15, 19))
DclassAbstractInstantiations2.symbols90 abstract qux(x : number) : string;
91 >qux : Symbol(G.qux, Decl(classAbstractInstantiations2.ts, 38, 18), Decl(classAbstractInstantiation…
94 abstract qux() : number;
95 >qux : Symbol(G.qux, Decl(classAbstractInstantiations2.ts, 38, 18), Decl(classAbstractInstantiation…
DdiscriminantPropertyCheck.js12 qux: true;
19 qux: false;
59 if (x.qux && x.foo !== undefined) {
65 if (x.foo !== undefined && x.qux) {
275 if (x.qux && x.foo !== undefined) {
280 if (x.foo !== undefined && x.qux) {
DdestructuringPropertyAssignmentNameIsNotAssignmentTarget.js3 function qux(bar: { value: number }) { function
13 function qux(bar) {
DprivateNameDeclaration.types15 qux = 6;
16 >qux : number
DclassAbstractInstantiations2.types98 abstract qux(x : number) : string;
99 >qux : { (x: number): string; (): number; }
102 abstract qux() : number;
103 >qux : { (x: number): string; (): number; }
DprivateNamesIncompatibleModifiers.types17 readonly #qux = 3; // OK
18 >#qux : 3
DdiscriminantPropertyCheck.types20 qux: true;
21 >qux : true
35 qux: false;
36 >qux : false
192 if (x.qux && x.foo !== undefined) {
193 >x.qux && x.foo !== undefined : boolean
194 >x.qux : boolean
196 >qux : boolean
216 if (x.foo !== undefined && x.qux) {
217 >x.foo !== undefined && x.qux : boolean
[all …]
DdestructuringPropertyAssignmentNameIsNotAssignmentTarget.types3 function qux(bar: { value: number }) {
4 >qux : (bar: { value: number;}) => void
DindexedAccessWithFreshObjectLiteral.js26 function qux (id: 1 | 2) { function
80 function qux(id) {
DclassAbstractOverloads.symbols35 qux();
36 >qux : Symbol(A.qux, Decl(classAbstractOverloads.ts, 12, 12))
DassignParameterPropertyToPropertyDeclarationESNext.js3 qux = this.bar // should error field in C
48 qux = this.bar; // should error field in C
DclassAbstractOverloads.types35 qux();
36 >qux : () => any
DclassAbstractSuperCalls.symbols36 qux() { return super.foo() || super.foo; } // 2 errors, foo is abstract
37 >qux : Symbol(C.qux, Decl(classAbstractSuperCalls.ts, 11, 23))
/third_party/json/test/src/
Dunit-json_patch.cpp107 { "op": "add", "path": "/baz", "value": "qux" }
114 "baz": "qux",
136 { "op": "add", "path": "/foo/1", "value": "qux" }
142 { "foo": [ "bar", "qux", "baz" ] }
157 "baz": "qux",
185 { "foo": [ "bar", "qux", "baz" ] }
212 "baz": "qux",
247 "qux": {
256 { "op": "move", "from": "/foo/waldo", "path": "/qux/thud" }
266 "qux": {
[all …]
/third_party/ejdb/src/bindings/ejdb2_dart/test/
Dejdb2_dart_test.dart99 await db.patch('mycoll', '[{"op":"add", "path":"/baz", "value":"qux"}]', 2);
101 assert(json == '{"foo":"baz","baz":"qux"}');
114 assert(doc.json == '{"foo":"baz","baz":"qux"}');
125 .setString(1, 'qux')
128 assert(doc.json == '{"foo":"baz","baz":"qux"}');
133 .setString('baz', 'qux')
138 assert(doc.json == '{"foo":"baz","baz":"qux"}');
/third_party/typescript/tests/cases/compiler/
DdiscriminantPropertyCheck.ts13 qux: true; property
20 qux: false; property
60 if (x.qux && x.foo !== undefined) {
66 if (x.foo !== undefined && x.qux) {
/third_party/ltp/tools/sparse/sparse-src/validation/
Dtypediff-enum.c19 void qux(num a);
20 void qux(int a) { } in qux() function
/third_party/typescript/tests/cases/conformance/classes/classDeclarations/classAbstractKeyword/
DclassAbstractInstantiations2.ts40 abstract qux(x : number) : string;
41 abstract qux() : number;

12345