/third_party/typescript/tests/baselines/reference/ |
D | typeArgInferenceWithNull.js | 10 function fn6<T extends { x: string }>(n: T, fun: (x: T) => void, n2: T) { } 11 fn6({ x: null }, y => { }, { x: "" }); // y has type { x: any }, but ideally would have type { x: s… 20 function fn6(n, fun, n2) { } function 21 fn6({ x: null }, function (y) { }, { x: "" }); // y has type { x: any }, but ideally would have typ…
|
D | typeArgInferenceWithNull.symbols | 24 function fn6<T extends { x: string }>(n: T, fun: (x: T) => void, n2: T) { } 25 >fn6 : Symbol(fn6, Decl(typeArgInferenceWithNull.ts, 6, 17)) 36 fn6({ x: null }, y => { }, { x: "" }); // y has type { x: any }, but ideally would have type { x: s… 37 >fn6 : Symbol(fn6, Decl(typeArgInferenceWithNull.ts, 6, 17))
|
D | typeArgInferenceWithNull.types | 25 function fn6<T extends { x: string }>(n: T, fun: (x: T) => void, n2: T) { } 26 >fn6 : <T extends { x: string; }>(n: T, fun: (x: T) => void, n2: T) => void 33 fn6({ x: null }, y => { }, { x: "" }); // y has type { x: any }, but ideally would have type { x: s… 34 >fn6({ x: null }, y => { }, { x: "" }) : void 35 >fn6 : <T extends { x: string; }>(n: T, fun: (x: T) => void, n2: T) => void
|
D | functionOverloadErrors.js | 25 function fn6(...t: any[]); 26 function fn6(x?: any); 27 function fn6() { } function 130 function fn6() { }
|
D | asyncFunctionDeclaration15_es6.js | 11 async function fn6(): Thenable { } // error 43 function fn6() {
|
D | returnStatements.js | 8 function fn6(): Date { return new Date(12); } 49 function fn6() { return new Date(12); } function
|
D | functionOverloadErrors.types | 51 function fn6(...t: any[]); 52 >fn6 : { (...t: any[]): any; (x?: any): any; } 55 function fn6(x?: any); 56 >fn6 : { (...t: any[]): any; (x?: any): any; } 59 function fn6() { } 60 >fn6 : { (...t: any[]): any; (x?: any): any; }
|
D | returnStatements.symbols | 19 function fn6(): Date { return new Date(12); } 20 >fn6 : Symbol(fn6, Decl(returnStatements.ts, 5, 40))
|
D | functionOverloadErrors.symbols | 50 function fn6(...t: any[]); 51 >fn6 : Symbol(fn6, Decl(functionOverloadErrors.ts, 20, 1), Decl(functionOverloadErrors.ts, 23, 26),… 54 function fn6(x?: any); 55 >fn6 : Symbol(fn6, Decl(functionOverloadErrors.ts, 20, 1), Decl(functionOverloadErrors.ts, 23, 26),… 58 function fn6() { } 59 >fn6 : Symbol(fn6, Decl(functionOverloadErrors.ts, 20, 1), Decl(functionOverloadErrors.ts, 23, 26),…
|
D | asyncFunctionDeclaration15_es6.symbols | 33 async function fn6(): Thenable { } // error 34 >fn6 : Symbol(fn6, Decl(asyncFunctionDeclaration15_es6.ts, 8, 43))
|
D | asyncFunctionDeclaration15_es5.symbols | 33 async function fn6(): Thenable { } // error 34 >fn6 : Symbol(fn6, Decl(asyncFunctionDeclaration15_es5.ts, 8, 43))
|
D | returnStatements.types | 22 function fn6(): Date { return new Date(12); } 23 >fn6 : () => Date
|
D | asyncFunctionDeclaration15_es5.js | 11 async function fn6(): Thenable { } // error 53 function fn6() {
|
D | instanceOfAssignability.js | 63 function fn6(x: Animal|Mammal) { function 174 function fn6(x) {
|
D | conditionalTypesSimplifyWhenTrivial.js | 30 function fn6<T>(x: ExcludeWithDefault<T, never>) { 81 function fn6(x) { function
|
D | asyncFunctionDeclaration15_es6.types | 31 async function fn6(): Thenable { } // error 32 >fn6 : () => Thenable
|
D | asyncFunctionDeclaration15_es5.types | 31 async function fn6(): Thenable { } // error 32 >fn6 : () => Thenable
|
/third_party/skia/resources/sksl/inliner/ |
D | ExponentialGrowth.sksl | 8 void fn6() { fn5(); fn5(); fn5(); } 9 void fn7() { fn6(); fn6(); fn6(); }
|
/third_party/typescript/tests/cases/conformance/functions/ |
D | functionOverloadErrors.ts | 24 function fn6(...t: any[]); function 25 function fn6(x?: any); 26 function fn6() { }
|
/third_party/typescript/tests/cases/compiler/ |
D | typeArgInferenceWithNull.ts | 9 function fn6<T extends { x: string }>(n: T, fun: (x: T) => void, n2: T) { } function 10 fn6({ x: null }, y => { }, { x: "" }); // y has type { x: any }, but ideally would have type { x: s…
|
/third_party/node/test/js-native-api/test_function/ |
D | test_function.c | 199 napi_value fn6; in Init() local 203 TestBadReturnExceptionPending, NULL, &fn6)); in Init() 220 env, exports, "TestBadReturnExceptionPending", fn6)); in Init()
|
/third_party/typescript/tests/cases/conformance/statements/returnStatements/ |
D | returnStatements.ts | 7 function fn6(): Date { return new Date(12); } function
|
/third_party/typescript/tests/cases/conformance/async/es6/functionDeclarations/ |
D | asyncFunctionDeclaration15_es6.ts | 12 async function fn6(): Thenable { } // error method in Thenable
|
/third_party/typescript/tests/cases/conformance/async/es5/functionDeclarations/ |
D | asyncFunctionDeclaration15_es5.ts | 13 async function fn6(): Thenable { } // error method in Thenable
|
/third_party/boost/libs/context/test/ |
D | test_apply.cpp | 94 int fn6( int i, movable && m) { in fn6() function 161 int result = ctx::detail::apply( fn6, std::make_tuple( 1, std::move( m) ) ); in test5()
|