Add a kind property to Gutters

This commit is contained in:
Ash Wilson
2018-07-24 09:36:56 -04:00
parent 107ec432e5
commit dbace171df
4 changed files with 28 additions and 1 deletions

View File

@@ -11,6 +11,8 @@ module.exports = class Gutter {
this.name = options && options.name
this.priority = (options && options.priority != null) ? options.priority : DefaultPriority
this.visible = (options && options.visible != null) ? options.visible : true
this.kind = (options && options.kind != null) ? options.kind : 'decorated'
this.labelFn = options && options.labelFn
this.emitter = new Emitter()
}