()
| 169 | }, |
| 170 | |
| 171 | comment () { |
| 172 | switch (c) { |
| 173 | case '*': |
| 174 | read() |
| 175 | lexState = 'multiLineComment' |
| 176 | return |
| 177 | |
| 178 | case '/': |
| 179 | read() |
| 180 | lexState = 'singleLineComment' |
| 181 | return |
| 182 | } |
| 183 | |
| 184 | throw invalidChar(read()) |
| 185 | }, |
| 186 | |
| 187 | multiLineComment () { |
| 188 | switch (c) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…