以下のようにオブジェクト リテラルを使用すると、このエラーが発生するのはなぜですか?
<canvas id="game" width="568" height="320"></canvas>
var GAME = {
settings: {
canvas: document.getElementById('game'),
context: this.canvas.getContext('2d'),
gameWidth: this.context.width,
gameHeight: this.context.height
}
};