Home
last modified time | relevance | path

Searched defs:baz (Results 1 – 25 of 479) sorted by relevance

12345678910>>...20

/third_party/typescript/tests/baselines/reference/
DmismatchedClassConstructorVariable.js2 var baz: foo; variable
3 class baz { } class
7 var baz; variable
8 var baz = /** @class */ (function () { function
9 function baz() { function
DgenericCallWithObjectLiteralArgs.js6 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
DemitClassDeclarationWithExtensionInES6.js3 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
Dshorthand-property-es6-es6.js3 const baz = 42; constant
4 const bar = { foo, baz }; field
9 const baz = 42; constant
10 const bar = { foo, baz }; field
Dshorthand-property-es5-es6.js3 const baz = 42; constant
4 const bar = { foo, baz }; field
9 var baz = 42; variable
10 var bar = { foo: foo, baz: baz }; property
DfunctionOverloads5.js2 class baz { class
9 var baz = /** @class */ (function () { function
10 function baz() { function
DoverloadModifiersMustAgree.js2 class baz { class
21 var baz = /** @class */ (function () { function
22 function baz() { function
DduplicatePropertyNames.js26 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
Dshorthand-property-es6-amd.js3 const baz = 42; constant
4 const bar = { foo, baz }; field
12 const bar = { foo: foo_1.foo, baz }; field
DobjectLiteralWidened.js12 baz: null, property
30 baz: n, property
44 baz: null, property
58 baz: n, property
DresolveTypeAliasWithSameLetDeclarationName1.js4 let baz: baz; variable
13 var baz; variable
/third_party/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/memberFunctionDeclarations/
DmemberFunctionsWithPublicPrivateOverloads.ts15 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/
DemitClassDeclarationWithExtensionInES6.ts3 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/
Dquerystring-stringify.js14 baz: 'quux', property
24 baz: 'quux', property
29 baz: ['bar'], property
35 baz: '', property
/third_party/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/
DassignmentCompatWithObjectMembersStringNumericNames.ts11 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/
Durl-searchparams-toString.js7 baz: 'quux', property
17 baz: 'quux', property
22 baz: ['bar'], property
28 baz: 'baz', property
Durl-searchparams-creation.js7 baz: 'quux', property
17 baz: 'quux', property
22 baz: ['bar'], property
28 baz: 'baz', property
/third_party/typescript/tests/cases/compiler/
Dshorthand-property-es5-es6.ts7 const baz = 42; constant
8 const bar = { foo, baz }; constant
DmismatchedClassConstructorVariable.ts1 var baz: foo; variable
2 class baz { } class
Dshorthand-property-es6-amd.ts7 const baz = 42; constant
8 const bar = { foo, baz }; constant
Dshorthand-property-es6-es6.ts7 const baz = 42; constant
8 const bar = { foo, baz }; constant
DresolveTypeAliasWithSameLetDeclarationName1.ts2 type baz = C; alias
3 let baz: baz; variable
DclassOrderBug.ts2 public baz: foo; property in bar
11 class baz {} class
DinterfaceWithCommaSeparators.ts1 var v: { bar(): void, baz } variable
2 interface Foo { bar(): void, baz } property
/third_party/typescript/tests/cases/conformance/interfaces/declarationMerging/
DmergeThreeInterfaces.ts13 baz: boolean; property
31 baz: T; property
50 baz: boolean; property
69 baz: T; property

12345678910>>...20