/third_party/typescript/tests/baselines/reference/ |
D | emitter.asyncGenerators.functionExpressions.es2018.js | 19 const f5 = async function * () { generator 48 const f5 = async function* () { generator
|
D | emitter.asyncGenerators.functionDeclarations.es2018.js | 19 async function * f5() { generator 48 async function* f5() { generator
|
D | destructuringVariableDeclaration1ES6.js | 34 var {f: [f1, f2, { f3: f4, f5 }, , ]} = { f: [1, 2, { f3: 4, f5: 0 }] }; field 72 var { f: [f1, f2, { f3: f4, f5 }, ,] } = { f: [1, 2, { f3: 4, f5: 0 }] }; property
|
D | destructuringVariableDeclaration1ES5.js | 34 var {f: [f1, f2, { f3: f4, f5 }, , ]} = { f: [1, 2, { f3: 4, f5: 0 }] }; field 77 var _s = { f: [1, 2, { f3: 4, f5: 0 }] }.f, f1 = _s[0], f2 = _s[1], _t = _s[2], f4 = _t.f3, f5 = _t… property
|
D | functionWithMultipleReturnStatements.js | 44 function f5() { function
|
D | destructuringVariableDeclaration1ES5iterable.js | 34 var {f: [f1, f2, { f3: f4, f5 }, , ]} = { f: [1, 2, { f3: 4, f5: 0 }] }; property 93 var _w = __read({ f: [1, 2, { f3: 4, f5: 0 }] }.f, 4), f1 = _w[0], f2 = _w[1], _x = _w[2], f4 = _x.… variable
|
D | literalFreshnessPropagationOnNarrowing.js | 55 function f5() { function
|
D | noImplicitAnyFunctions.js | 29 function f5(x) { function
|
/third_party/typescript/tests/cases/compiler/ |
D | noImplicitAnyFunctions.ts | 14 function f5(x: any): any { function
|
D | noImplicitAnyDestructuringParameterDeclaration.ts | 10 function f5([a1] = [undefined], {b1} = { b1: null }, c1 = undefined, d1 = null) { // error function
|
D | functionReturn.ts | 13 function f5(): string { function
|
D | declFileRestParametersOfFunctionAndFunctionType.ts | 7 function f5<T extends { (...args): void }>() { } function
|
D | collisionRestParameterFunction.ts | 29 declare function f5(_i: number, ...rest); // no codegen no error function
|
D | literalFreshnessPropagationOnNarrowing.ts | 54 function f5() { function
|
D | noImplicitThisFunctions.ts | 20 let f5 = () => () => this; variable
|
D | duplicateIdentifierBindingElementInParameterDeclaration1.ts | 8 function f5({e, e: {e}}, {e}, [d,e, [[e]]], ...e) { } function
|
D | unusedParametersWithUnderscore.ts | 17 function f5(..._arg) { function
|
D | duplicateIdentifierBindingElementInParameterDeclaration2.ts | 9 function f5({e, e: {e}}, {e}, [d, e, [[e]]], ...e) { } function
|
/third_party/typescript/tests/cases/conformance/types/typeRelationships/comparable/ |
D | equalityStrictNulls.ts | 70 function f5(x: string) { function
|
/third_party/typescript/tests/cases/conformance/types/spread/ |
D | spreadTypeVariable.ts | 17 function f5<T extends string[] | { [key: string]: any }>(arg: T) { function
|
/third_party/typescript/tests/cases/conformance/controlFlow/ |
D | controlFlowDestructuringDeclaration.ts | 37 function f5() { function
|
D | controlFlowIIFE.ts | 61 function f5() { function
|
/third_party/typescript/tests/cases/conformance/types/typeRelationships/bestCommonType/ |
D | functionWithMultipleReturnStatements.ts | 45 function f5() { function
|
/third_party/typescript/tests/cases/conformance/types/literal/ |
D | literalTypes3.ts | 36 function f5(x: number, y: 1 | 2) { function
|
/third_party/typescript/tests/cases/conformance/types/union/ |
D | unionTypeCallSignatures3.ts | 5 function f5(s?: string, n?: number) { } function
|