/third_party/typescript/tests/baselines/reference/ |
D | mismatchedClassConstructorVariable.js | 2 var baz: foo; variable 3 class baz { } class 7 var baz; variable 8 var baz = /** @class */ (function () { function 9 function baz() { function
|
D | genericCallWithObjectLiteralArgs.js | 6 var r = foo({ bar: 1, baz: '' }); // error property 7 var r2 = foo({ bar: 1, baz: 1 }); // T = number property 8 var r3 = foo({ bar: foo, baz: foo }); // T = typeof foo property 9 var r4 = foo<Object>({ bar: 1, baz: '' }); // T = Object property 15 var r = foo({ bar: 1, baz: '' }); // error property 16 var r2 = foo({ bar: 1, baz: 1 }); // T = number property 17 var r3 = foo({ bar: foo, baz: foo }); // T = typeof foo property 18 var r4 = foo({ bar: 1, baz: '' }); // T = Object property
|
D | emitClassDeclarationWithExtensionInES6.js | 3 baz(a: string, y = 10) { } method in B 7 baz(a: string, y:number) { method in C 20 baz() { method in D 28 baz(a, y = 10) { } method in B 32 baz(a, y) { method in C 43 baz() { method in D
|
D | shorthand-property-es6-es6.js | 3 const baz = 42; constant 4 const bar = { foo, baz }; field 9 const baz = 42; constant 10 const bar = { foo, baz }; field
|
D | shorthand-property-es5-es6.js | 3 const baz = 42; constant 4 const bar = { foo, baz }; field 9 var baz = 42; variable 10 var bar = { foo: foo, baz: baz }; property
|
D | functionOverloads5.js | 2 class baz { class 9 var baz = /** @class */ (function () { function 10 function baz() { function
|
D | overloadModifiersMustAgree.js | 2 class baz { class 21 var baz = /** @class */ (function () { function 22 function baz() { function
|
D | duplicatePropertyNames.js | 26 baz = () => { } field in C 27 baz = () => { } field in C 55 this.baz = function () { }; method in C.C 56 this.baz = function () { }; method in C.C
|
D | shorthand-property-es6-amd.js | 3 const baz = 42; constant 4 const bar = { foo, baz }; field 12 const bar = { foo: foo_1.foo, baz }; field
|
D | objectLiteralWidened.js | 12 baz: null, property 30 baz: n, property 44 baz: null, property 58 baz: n, property
|
D | resolveTypeAliasWithSameLetDeclarationName1.js | 4 let baz: baz; variable 13 var baz; variable
|
/third_party/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/memberFunctionDeclarations/ |
D | memberFunctionsWithPublicPrivateOverloads.ts | 15 protected baz(x: string); // error method in C 24 protected static baz(x: 'hi'); method in C 40 private baz(x: string); method in D 53 public static baz(x: string); // error method in D
|
/third_party/typescript/tests/cases/conformance/es6/classDeclaration/ |
D | emitClassDeclarationWithExtensionInES6.ts | 3 baz(a: string, y = 10) { } method in B 7 baz(a: string, y:number) { method in C 20 baz() { method in D
|
/third_party/node/benchmark/querystring/ |
D | querystring-stringify.js | 14 baz: 'quux', property 24 baz: 'quux', property 29 baz: ['bar'], property 35 baz: '', property
|
/third_party/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/ |
D | assignmentCompatWithObjectMembersStringNumericNames.ts | 11 interface T2 { '1.0': string; baz?: string } property 16 var b: { '1.0': string; baz?: string } variable 52 interface T2 { 1.0: string; baz?: string } property 57 var b: { 1.0: string; baz?: string } variable
|
/third_party/node/benchmark/url/ |
D | url-searchparams-toString.js | 7 baz: 'quux', property 17 baz: 'quux', property 22 baz: ['bar'], property 28 baz: 'baz', property
|
D | url-searchparams-creation.js | 7 baz: 'quux', property 17 baz: 'quux', property 22 baz: ['bar'], property 28 baz: 'baz', property
|
/third_party/typescript/tests/cases/compiler/ |
D | shorthand-property-es5-es6.ts | 7 const baz = 42; constant 8 const bar = { foo, baz }; constant
|
D | mismatchedClassConstructorVariable.ts | 1 var baz: foo; variable 2 class baz { } class
|
D | shorthand-property-es6-amd.ts | 7 const baz = 42; constant 8 const bar = { foo, baz }; constant
|
D | shorthand-property-es6-es6.ts | 7 const baz = 42; constant 8 const bar = { foo, baz }; constant
|
D | resolveTypeAliasWithSameLetDeclarationName1.ts | 2 type baz = C; alias 3 let baz: baz; variable
|
D | classOrderBug.ts | 2 public baz: foo; property in bar 11 class baz {} class
|
D | interfaceWithCommaSeparators.ts | 1 var v: { bar(): void, baz } variable 2 interface Foo { bar(): void, baz } property
|
/third_party/typescript/tests/cases/conformance/interfaces/declarationMerging/ |
D | mergeThreeInterfaces.ts | 13 baz: boolean; property 31 baz: T; property 50 baz: boolean; property 69 baz: T; property
|