()
| 199 | }, |
| 200 | |
| 201 | multiLineCommentAsterisk () { |
| 202 | switch (c) { |
| 203 | case '*': |
| 204 | read() |
| 205 | return |
| 206 | |
| 207 | case '/': |
| 208 | read() |
| 209 | lexState = 'default' |
| 210 | return |
| 211 | |
| 212 | case undefined: |
| 213 | throw invalidChar(read()) |
| 214 | } |
| 215 | |
| 216 | read() |
| 217 | lexState = 'multiLineComment' |
| 218 | }, |
| 219 | |
| 220 | singleLineComment () { |
| 221 | switch (c) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…