Code coverage report for lib/game.js

Statements: 100% (10 / 10)      Branches: 100% (0 / 0)      Functions: 100% (4 / 4)      Lines: 100% (10 / 10)      Ignored: none     

All files » lib/ » game.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22  1   1       1 1 17 17   1 1   168     14      
"use strict";
Object.defineProperties(exports, {
  Game: {get: function() {
      return Game;
    }},
  __esModule: {value: true}
});
var Line = require('./line').Line;
var Game = function Game() {
  $traceurRuntime.superCall(this, $Game.prototype, "constructor", []);
  this.tags = Object.create(null);
};
var $Game = Game;
($traceurRuntime.createClass)(Game, {
  addTag: function(key, value) {
    $traceurRuntime.setProperty(this.tags, key, value);
  },
  finish: function(result) {
    this.result;
  }
}, {}, Line);