(line: number, column: number)
| 376 | } |
| 377 | |
| 378 | setSourcePosition(line: number, column: number): void { |
| 379 | const target = this._sourcePosition; |
| 380 | target.line = line; |
| 381 | target.column = column; |
| 382 | } |
| 383 | |
| 384 | getCurrentColumn(): number { |
| 385 | return this._position.column + (this._queuedChar ? 1 : 0); |
no outgoing calls
no test coverage detected