1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
//// [implicitAnyFunctionInvocationWithAnyArguements.ts]
// this should be errors
var arg0 = null; // error at "arg0"
var anyArray = [null, undefined]; // error at array literal
var objL: { v; w; } // error at "y,z"
var funcL: (y2) => number;
function temp1(arg1) { } // error at "temp1"
function testFunctionExprC(subReplace: (s: string, ...arg: any[]) => string) { }
function testFunctionExprC2(eq: (v1: any, v2: any) => number) { };
function testObjLiteral(objLit: { v: any; w: any }) { };
function testFuncLiteral(funcLit: (y2) => number) { };
// this should not be an error
testFunctionExprC2((v1, v2) => 1);
testObjLiteral(objL);
testFuncLiteral(funcL);
var k = temp1(null);
var result = temp1(arg0);
var result1 = temp1(anyArray);
function noError(variable: any, array?: any) { }
noError(null, []);
noError(undefined, <any>[]);
noError(null, [null, undefined]);
noError(undefined, anyArray);
class C {
constructor(emtpyArray: any, variable: any) {
}
}
var newC = new C([], undefined);
var newC1 = new C([], arg0);
var newC2 = new C(<any>[], null)
//// [implicitAnyFunctionInvocationWithAnyArguements.js]
// this should be errors
var arg0 = null; // error at "arg0"
var anyArray = [null, undefined]; // error at array literal
var objL; // error at "y,z"
var funcL;
function temp1(arg1) { } // error at "temp1"
function testFunctionExprC(subReplace) { }
function testFunctionExprC2(eq) { }
;
function testObjLiteral(objLit) { }
;
function testFuncLiteral(funcLit) { }
;
// this should not be an error
testFunctionExprC2(function (v1, v2) { return 1; });
testObjLiteral(objL);
testFuncLiteral(funcL);
var k = temp1(null);
var result = temp1(arg0);
var result1 = temp1(anyArray);
function noError(variable, array) { }
noError(null, []);
noError(undefined, []);
noError(null, [null, undefined]);
noError(undefined, anyArray);
var C = /** @class */ (function () {
function C(emtpyArray, variable) {
}
return C;
}());
var newC = new C([], undefined);
var newC1 = new C([], arg0);
var newC2 = new C([], null);
|