/third_party/typescript/tests/baselines/reference/ |
D | objectRestReadonly.types | 18 >{ foo: 'bar', baz: 'qux', quux: 'quuz',} : { foo: string; baz: string; quux: string; } 24 baz: 'qux', 26 >'qux' : "qux"
|
D | privateNameDeclaration.js | 6 qux = 6; field in A 19 this.qux = 6; 31 qux: number;
|
D | privateNameAndPropertySignature.types | 28 declare const y: [{ qux: { #quux: 3 } }]; 29 >y : [{ qux: { #quux: 3;}; }] 30 >qux : {}
|
D | privateNameDeclaration.symbols | 14 qux = 6; 15 >qux : Symbol(A.qux, Decl(privateNameDeclaration.ts, 3, 16))
|
D | destructuringPropertyAssignmentNameIsNotAssignmentTarget.symbols | 3 function qux(bar: { value: number }) { 4 >qux : Symbol(qux, Decl(destructuringPropertyAssignmentNameIsNotAssignmentTarget.ts, 0, 0))
|
D | privateNamesIncompatibleModifiers.symbols | 14 readonly #qux = 3; // OK 15 >#qux : Symbol(A.#qux, Decl(privateNamesIncompatibleModifiers.ts, 3, 23))
|
D | privateNameAndPropertySignature.symbols | 30 declare const y: [{ qux: { #quux: 3 } }]; 32 >qux : Symbol(qux, Decl(privateNameAndPropertySignature.ts, 15, 19))
|
D | classAbstractInstantiations2.symbols | 90 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…
|
D | discriminantPropertyCheck.js | 12 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) {
|
D | destructuringPropertyAssignmentNameIsNotAssignmentTarget.js | 3 function qux(bar: { value: number }) { function 13 function qux(bar) {
|
D | privateNameDeclaration.types | 15 qux = 6; 16 >qux : number
|
D | classAbstractInstantiations2.types | 98 abstract qux(x : number) : string; 99 >qux : { (x: number): string; (): number; } 102 abstract qux() : number; 103 >qux : { (x: number): string; (): number; }
|
D | privateNamesIncompatibleModifiers.types | 17 readonly #qux = 3; // OK 18 >#qux : 3
|
D | discriminantPropertyCheck.types | 20 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 …]
|
D | destructuringPropertyAssignmentNameIsNotAssignmentTarget.types | 3 function qux(bar: { value: number }) { 4 >qux : (bar: { value: number;}) => void
|
D | indexedAccessWithFreshObjectLiteral.js | 26 function qux (id: 1 | 2) { function 80 function qux(id) {
|
D | classAbstractOverloads.symbols | 35 qux(); 36 >qux : Symbol(A.qux, Decl(classAbstractOverloads.ts, 12, 12))
|
D | assignParameterPropertyToPropertyDeclarationESNext.js | 3 qux = this.bar // should error field in C 48 qux = this.bar; // should error field in C
|
D | classAbstractOverloads.types | 35 qux(); 36 >qux : () => any
|
D | classAbstractSuperCalls.symbols | 36 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/ |
D | unit-json_patch.cpp | 107 { "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/ |
D | ejdb2_dart_test.dart | 99 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/ |
D | discriminantPropertyCheck.ts | 13 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/ |
D | typediff-enum.c | 19 void qux(num a); 20 void qux(int a) { } in qux() function
|
/third_party/typescript/tests/cases/conformance/classes/classDeclarations/classAbstractKeyword/ |
D | classAbstractInstantiations2.ts | 40 abstract qux(x : number) : string; 41 abstract qux() : number;
|