TypeScript/tests/baselines/reference/parser0_004152.js
Wesley Wigham c6c2c4c8d5
Hoist initial assignment to exported names in cjs to they are not blocked by bindings made by __exportStar (#37093)
* Hoist initial assignment to exported names in cjs to they are not blocked by bindings made by __exportStar

* Copy hoisted identifiers so they do not create sourcemaps

* Accept updated baselines
2020-02-28 13:25:28 -08:00

19 lines
458 B
TypeScript

//// [parser0_004152.ts]
export class Game {
private position = new DisplayPosition([), 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 3, 0], NoMove, 0);
private prevConfig: SeedCoords[][];
}
//// [parser0_004152.js]
"use strict";
exports.__esModule = true;
exports.Game = void 0;
var Game = /** @class */ (function () {
function Game() {
this.position = new DisplayPosition([]);
}
;
return Game;
}());
exports.Game = Game;