| /third_party/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/ |
| D | typeParametersAreIdenticalToThemselves.ts | 3 function foo1<T>(x: T); function 22 foo1(x: T); method in C 40 foo1(x: T); method in C2 54 foo1(x: T); method 55 foo1(x: T); // error, same T method 68 foo1(x: T); method 69 foo1(x: T); // error, same T method
|
| /third_party/typescript/tests/baselines/reference/ |
| D | nullishCoalescingOperator7.js | 6 const foo1 = a ? 1 : 2; constant 17 var foo1 = a ? 1 : 2; variable
|
| D | optionalProperties01.js | 8 const foo1 = { required1: "hello" } as Foo; variable 13 var foo1 = { required1: "hello" }; variable
|
| D | propertySignatures.js | 3 var foo1: { a:string; a: string; }; variable 25 var foo1; variable
|
| D | propertyAssignment.js | 2 var foo1: { new ():any; } variable 18 var foo1; variable
|
| D | downlevelLetConst18.js | 9 function foo1() { x }; function 43 function foo1() { x; } function
|
| D | typeParametersAreIdenticalToThemselves.js | 90 C.prototype.foo1 = function (x) { }; method in C 99 C2.prototype.foo1 = function (x) { }; method in C2
|
| D | mixingStaticAndInstanceOverloads.js | 6 static foo1(a) { } method in C1 42 C1.foo1 = function (a) { }; function in C1
|
| D | controlFlowWithIncompleteTypes.js | 6 function foo1() { function
|
| D | exportDeclaredModule.js | 20 var foo1 = require("./foo1"); variable
|
| D | exportAssignDottedName.js | 23 var foo1 = require("./foo1"); variable
|
| /third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/ |
| D | dynamic_loading_template.rs | 15 pub foo1: Result<unsafe extern "C" fn(x: f32) -> f32, ::libloading::Error>, field 33 let foo1 = __library.get(b"foo1\0").map(|sym| *sym); in from_library() localVariable 46 pub unsafe fn foo1(&self, x: f32) -> f32 { in foo1() method
|
| /third_party/typescript/tests/cases/compiler/ |
| D | functionOverloads45.ts | 5 function foo1(bar: { a:number }[]): Cat; function 7 function foo1([x]: { a:number | string }[]): Animal { function
|
| D | functionOverloads44.ts | 5 function foo1(bar: { a:number }[]): Dog; function 7 function foo1([x]: { a:number | string }[]): Dog { function
|
| D | primitiveConstraints1.ts | 1 function foo1<T extends U, U>(t: T, u: U) { } function
|
| D | declarationEmitDestructuringWithOptionalBindingParameters.ts | 4 function foo1( { x, y, z }?: { x: string; y: number; z: boolean }) { function
|
| D | genericTypeWithCallableMembers2.ts | 1 function foo1<T extends { (): string; }>(f: T) { function
|
| D | invocationExpressionInFunctionParameter.ts | 1 function foo1(val: string) { function
|
| D | undefinedArgumentInference.ts | 1 function foo1<T>(f1: { x: T; y: T }): T { function
|
| D | typeArgumentConstraintResolution1.ts | 1 function foo1<T extends Date>(test: T); function
|
| D | widenToAny1.ts | 2 function foo1<T>(f1: { x: T; y: T }): T { function
|
| /third_party/typescript/tests/cases/conformance/es6/destructuring/ |
| D | destructuringSameNames.ts | 21 let { foo1, foo1 } = { foo1: 10 }; variable
|
| /third_party/typescript/tests/cases/fourslash/ |
| D | findAllRefsReExportsUseInImportType.ts | 17 const [full0Def, full0, foo0Def, foo0, foo1Def, foo1, foo2Def, foo2, foo3, full1, foo4, full2] = te… constant 26 const fooTypesRanges = [foo0, foo1]; constant
|
| /third_party/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/ |
| D | subtypingWithCallSignatures.ts | 2 declare function foo1(cb: (x: number) => void): typeof cb; function
|
| D | subtypingWithConstructSignatures.ts | 2 declare function foo1(cb: new (x: number) => void): typeof cb; function
|