Remove unused ivars

This commit is contained in:
Kevin Sawicki 2014-02-10 14:43:28 -08:00
parent 256a9bf08a
commit 2248bbf8fb

View File

@ -8,19 +8,14 @@ class LanguageMode
Emitter.includeInto(this)
Subscriber.includeInto(this)
buffer: null
grammar: null
editor: null
currentGrammarScore: null
destroy: ->
@unsubscribe()
# Sets up a `LanguageMode` for the given {Editor}.
#
# editor - The {Editor} to associate with
constructor: (@editor) ->
@buffer = @editor.buffer
{@buffer} = @editor
destroy: ->
@unsubscribe()
toggleLineCommentForBufferRow: (row) ->
@toggleLineCommentsForBufferRows(row, row)