TypeScript/tests/baselines/reference/parser0_004152.js

15 lines
370 B
JavaScript

//// [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]
var Game = (function () {
function Game() {
this.position = new DisplayPosition([]);
}
return Game;
})();
exports.Game = Game;