0
我已經使用畫布在CoffeScript中開始了一個小遊戲。 我的問題是這樣的錯誤:CoffeeScript中意外的輸入結束
coffee -c -o lib/ src/
/src/interface.coffee:8:48: error: unexpected end of input
@ctx.clearRect 0, 0, @size[0], @size[1]
^
我已經重寫了很多次,但還是不希望編譯。 下面是代碼:
class Interface:
constructor : (id) ->
@canvas = document.getElementById "#{id}"
@ctx = @canvas.getContext "2d"
@size = [@canvas.width, @canvas.height]
clear :() ->
@ctx.clearRect 0, 0, @size[0], @size[1]
哦,有人可以告訴我,正是這種錯誤意味着什麼?
預先感謝您。
你能發佈整個文件嗎?這可能是一個未終止的報價。 'Interface'後冒號爲 – justMiles
。 –
@justMiles這是整個文件 –