【问题标题】:Unexpected Indent error coffeescript意外缩进错误咖啡脚本
【发布时间】:2014-03-15 19:55:29
【问题描述】:

我在尝试编译此代码时遇到意外的缩进错误:

class permanentItem extend Item 
    add: ->
        super()

    remove: ->
        super()

它在第二行add: ->。我已经尝试对此发表评论,但它仍然给我在remove: -> 上的相同错误。有什么想法吗?

【问题讨论】:

    标签: javascript class compiler-errors coffeescript indentation


    【解决方案1】:

    您的代码中有错字。应该是extends 而不是extend

    class permanentItem extends Item 
        add: ->
            super()
    
        remove: ->
            super()
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2015-12-12
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多