UglifyJS/test/input/issue-3219/file2.js

12 lines
258 B
JavaScript
Raw Normal View History

2018-07-20 08:23:26 +00:00
var Car = /** @class */ (function () {
function Car() {
this.model = 'nice';
this.speed = 100;
this.cost = 1000000;
}
return Car;
}());
var myCar = new Car();
myCar.cost += 1;
var _a = [1, 2], blah = _a[0], blah2 = _a[1];