TypeScript/tests/baselines/reference/trailingCommaInHeterogenousArrayLiteral1.js
2014-07-14 14:26:19 -07:00

24 lines
583 B
JavaScript

//// [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 () {
this.test([1, 2, "hi", 5, ]);
this.test([1, 2, "hi", 5]);
};
return arrTest;
})();