/third_party/typescript/tests/cases/conformance/es6/destructuring/ |
D | declarationsAndAssignments.ts | 123 function f17({ a = "", b = 0, c = false }) { function 126 f17({}); 127 f17({ a: "hello" }); 128 f17({ c: true }); 129 f17(f15());
|
/third_party/typescript/tests/baselines/reference/ |
D | declarationsAndAssignments.js | 124 function f17({ a = "", b = 0, c = false }) { function 127 f17({}); 128 f17({ a: "hello" }); 129 f17({ c: true }); 130 f17(f15()); 298 function f17(_a) { 301 f17({}); 302 f17({ a: "hello" }); 303 f17({ c: true }); 304 f17(f15());
|
D | genericDefaults.js | 315 declare function f17<T = U, U = T | B>(a?: T, b?: U): [T, U]; 317 f17(); 318 f17(a); 319 f17(a, a); 320 f17(a, b); 321 f17(a, c); 323 f17<A>(); 324 f17<A>(a); 325 f17<A>(a, a); 326 f17<A>(a, b); [all …]
|
D | declarationsAndAssignments.types | 518 function f17({ a = "", b = 0, c = false }) { 519 >f17 : ({ a, b, c }: { a?: string; b?: number; c?: boolean; }) => void 528 f17({}); 529 >f17({}) : void 530 >f17 : ({ a, b, c }: { a?: string; b?: number; c?: boolean; }) => void 533 f17({ a: "hello" }); 534 >f17({ a: "hello" }) : void 535 >f17 : ({ a, b, c }: { a?: string; b?: number; c?: boolean; }) => void 540 f17({ c: true }); 541 >f17({ c: true }) : void [all …]
|
D | functionsMissingReturnStatementsAndExpressions.js | 83 function f17() { 196 function f17() { function
|
D | subtypesOfTypeParameterWithConstraints2.js | 126 function f17<T extends typeof f>(x: T) { 139 function f17<U extends T>(a: U) { 274 function f17(x) { function 285 function f17(a) { function
|
D | inferingFromAny.types | 82 declare function f17<T, K>(x: {[P in keyof T]: K}): T; 83 >f17 : <T, K>(x: { [P in keyof T]: K; }) => T 192 var a = f17(a); 194 >f17(a) : any 195 >f17 : <T, K>(x: { [P in keyof T]: K; }) => T
|
D | genericDefaults.errors.txt | 338 declare function f17<T = U, U = T | B>(a?: T, b?: U): [T, U]; 342 f17(); 343 f17(a); 344 f17(a, a); 345 f17(a, b); 346 f17(a, c); 348 f17<A>(); 349 f17<A>(a); 350 f17<A>(a, a); 351 f17<A>(a, b); [all …]
|
D | objectLiteralErrors.js | 40 var f17 = { a: 0, get b() { return 1; }, get a() { return 0; } }; variable 86 var f17 = { a: 0, get b() { return 1; }, get a() { return 0; } }; variable
|
D | declarationsAndAssignments.symbols | 378 function f17({ a = "", b = 0, c = false }) { 379 >f17 : Symbol(f17, Decl(declarationsAndAssignments.ts, 120, 1)) 385 f17({}); 386 >f17 : Symbol(f17, Decl(declarationsAndAssignments.ts, 120, 1)) 388 f17({ a: "hello" }); 389 >f17 : Symbol(f17, Decl(declarationsAndAssignments.ts, 120, 1)) 392 f17({ c: true }); 393 >f17 : Symbol(f17, Decl(declarationsAndAssignments.ts, 120, 1)) 396 f17(f15()); 397 >f17 : Symbol(f17, Decl(declarationsAndAssignments.ts, 120, 1))
|
D | genericDefaults.types | 1237 declare function f17<T = U, U = T | B>(a?: T, b?: U): [T, U]; 1238 >f17 : <T = U, U = B | T>(a?: T, b?: U) => [T, U] 1243 f17(); 1244 >f17() : [unknown, unknown] 1245 >f17 : <T = U, U = B | T>(a?: T, b?: U) => [T, U] 1247 f17(a); 1248 >f17(a) : [A, A | B] 1249 >f17 : <T = U, U = B | T>(a?: T, b?: U) => [T, U] 1252 f17(a, a); 1253 >f17(a, a) : [A, A] [all …]
|
D | nullIsSubtypeOfEverythingButUndefined.js | 73 function f17<T>(x: T) { 162 function f17(x) { function
|
D | functionsMissingReturnStatementsAndExpressions.symbols | 124 function f17() { 125 >f17 : Symbol(f17, Decl(functionsMissingReturnStatementsAndExpressions.ts, 79, 1))
|
D | parser.asyncGenerators.functionDeclarations.es2018.symbols | 102 async function * f17() { 103 >f17 : Symbol(f17, Decl(awaitWithValueIsOk.ts, 0, 0))
|
D | parser.asyncGenerators.functionExpressions.es2018.symbols | 112 const f17 = async function * () { 113 >f17 : Symbol(f17, Decl(awaitWithValueIsOk.ts, 0, 5))
|
/third_party/typescript/tests/cases/compiler/ |
D | genericDefaults.ts | 315 declare function f17<T = U, U = T | B>(a?: T, b?: U): [T, U]; 317 f17(); 318 f17(a); 319 f17(a, a); 320 f17(a, b); 321 f17(a, c); 323 f17<A>(); 324 f17<A>(a); 325 f17<A>(a, a); 326 f17<A>(a, b); [all …]
|
D | functionsMissingReturnStatementsAndExpressions.ts | 86 function f17() { function
|
/third_party/skia/resources/sksl/runtime/ |
D | LargeProgram_StackDepth.rts | 41 void f17() { f18(); } 42 void f16() { f17(); }
|
/third_party/jerryscript/tests/jerry/es2015/ |
D | function-param-init4.js | 138 var f17 = ([[a]] = a) => function 142 f17([[2]])
|
/third_party/skia/resources/sksl/runtime_errors/ |
D | ProgramTooLarge_StackDepth.rts | 44 void f17() { f18(); } 45 void f16() { f17(); }
|
/third_party/typescript/tests/cases/conformance/salsa/ |
D | inferingFromAny.ts | 24 declare function f17<T, K>(x: {[P in keyof T]: K}): T; 45 var a = f17(a);
|
/third_party/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/ |
D | subtypesOfTypeParameterWithConstraints2.ts | 125 function f17<T extends typeof f>(x: T) { function 138 function f17<U extends T>(a: U) {
|
/third_party/typescript/tests/cases/conformance/parser/ecmascript2018/asyncGenerators/ |
D | parser.asyncGenerators.functionDeclarations.es2018.ts | 67 async function * f17() { generator
|
D | parser.asyncGenerators.functionExpressions.es2018.ts | 67 const f17 = async function * () { constant
|
/third_party/libjpeg-turbo/simd/mips/ |
D | jsimd_dspr2_asm.h | 77 #define f17 $f17 macro
|