()
| 53 | return this.lastColumnValue - (this.lineStart ? countColumn(this.string, this.lineStart, this.tabSize) : 0) |
| 54 | } |
| 55 | indentation() { |
| 56 | return countColumn(this.string, null, this.tabSize) - |
| 57 | (this.lineStart ? countColumn(this.string, this.lineStart, this.tabSize) : 0) |
| 58 | } |
| 59 | match(pattern, consume, caseInsensitive) { |
| 60 | if (typeof pattern == "string") { |
| 61 | let cased = str => caseInsensitive ? str.toLowerCase() : str |
no test coverage detected