()
| 185 | }, |
| 186 | |
| 187 | multiLineComment () { |
| 188 | switch (c) { |
| 189 | case '*': |
| 190 | read() |
| 191 | lexState = 'multiLineCommentAsterisk' |
| 192 | return |
| 193 | |
| 194 | case undefined: |
| 195 | throw invalidChar(read()) |
| 196 | } |
| 197 | |
| 198 | read() |
| 199 | }, |
| 200 | |
| 201 | multiLineCommentAsterisk () { |
| 202 | switch (c) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…