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 72 73 74 75 76 77 78 79 80 81
|
//// [collisionRestParameterClassMethod.ts]
class c1 {
public foo(_i: number, ...restParameters) { //_i is error
var _i = 10; // no error
}
public fooNoError(_i: number) { // no error
var _i = 10; // no error
}
public f4(_i: number, ...rest); // no codegen no error
public f4(_i: string, ...rest); // no codegen no error
public f4(_i: any, ...rest) { // error
var _i: any; // no error
}
public f4NoError(_i: number); // no error
public f4NoError(_i: string); // no error
public f4NoError(_i: any) { // no error
var _i: any; // no error
}
}
declare class c2 {
public foo(_i: number, ...restParameters); // No error - no code gen
public fooNoError(_i: number); // no error
public f4(_i: number, ...rest); // no codegen no error
public f4(_i: string, ...rest); // no codegen no error
public f4NoError(_i: number); // no error
public f4NoError(_i: string); // no error
}
class c3 {
public foo(...restParameters) {
var _i = 10; // no error
}
public fooNoError() {
var _i = 10; // no error
}
}
//// [collisionRestParameterClassMethod.js]
var c1 = /** @class */ (function () {
function c1() {
}
c1.prototype.foo = function (_i) {
var restParameters = [];
for (var _a = 1; _a < arguments.length; _a++) {
restParameters[_a - 1] = arguments[_a];
}
var _i = 10; // no error
};
c1.prototype.fooNoError = function (_i) {
var _i = 10; // no error
};
c1.prototype.f4 = function (_i) {
var rest = [];
for (var _a = 1; _a < arguments.length; _a++) {
rest[_a - 1] = arguments[_a];
}
var _i; // no error
};
c1.prototype.f4NoError = function (_i) {
var _i; // no error
};
return c1;
}());
var c3 = /** @class */ (function () {
function c3() {
}
c3.prototype.foo = function () {
var restParameters = [];
for (var _a = 0; _a < arguments.length; _a++) {
restParameters[_a] = arguments[_a];
}
var _i = 10; // no error
};
c3.prototype.fooNoError = function () {
var _i = 10; // no error
};
return c3;
}());
|