TypeScript/tests/baselines/reference/parser0_004152.js
2017-02-10 12:48:14 -08:00

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