Define class properties with :, not =

This commit is contained in:
Nathan Sobo
2013-04-25 14:00:16 -06:00
parent 60f945aafd
commit 1ac55413d9

View File

@@ -11,9 +11,9 @@ Subscriber = require 'subscriber'
module.exports =
class LanguageMode
buffer = null
grammar = null
editSession = null
buffer: null
grammar: null
editSession: null
currentGrammarScore: null
# Public: Sets up a `LanguageMode` for the given {EditSession}.