TypeScript/tests/baselines/reference/parser0_004152.js
2015-03-31 14:29:45 -07:00

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