TypeScript/tests/baselines/reference/trailingCommaInHeterogenousArrayLiteral1.js

24 lines
626 B
TypeScript

//// [trailingCommaInHeterogenousArrayLiteral1.ts]
class arrTest {
test(arg1: number[]) { }
callTest() {
// these two should give the same error
this.test([1, 2, "hi", 5, ]);
this.test([1, 2, "hi", 5]);
}
}
//// [trailingCommaInHeterogenousArrayLiteral1.js]
var arrTest = (function () {
function arrTest() {
}
arrTest.prototype.test = function (arg1) { };
arrTest.prototype.callTest = function () {
// these two should give the same error
this.test([1, 2, "hi", 5,]);
this.test([1, 2, "hi", 5]);
};
return arrTest;
})();