1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
//// [tests/cases/compiler/unusedLocalsOnFunctionDeclarationWithinFunctionExpression1.ts] ////
//// [unusedLocalsOnFunctionDeclarationWithinFunctionExpression1.ts]
var greeter = function (person: string, person2: string) {
var unused = 20;
function maker(child: string): void {
var unused2 = 22;
}
person2 = "dummy value";
}
//// [unusedLocalsOnFunctionDeclarationWithinFunctionExpression1.js]
var greeter = function (person, person2) {
var unused = 20;
function maker(child) {
var unused2 = 22;
}
person2 = "dummy value";
};
|