()
| 117 | } |
| 118 | |
| 119 | private Comma(): Comma | undefined { |
| 120 | if ( |
| 121 | this.input.slice(this.pointer, this.pointer + this.comma.length) === |
| 122 | this.comma |
| 123 | ) { |
| 124 | this.pointer += this.comma.length; |
| 125 | return this.comma; |
| 126 | } |
| 127 | } |
| 128 | |
| 129 | private LineBreak(): LineBreak | undefined { |
| 130 | if (this.input.slice(this.pointer, this.pointer + 2) === '\r\n') { |