(source, setState)
| 170 | } |
| 171 | |
| 172 | function stringGap(source, setState) { |
| 173 | if (source.eat('\\')) { |
| 174 | return switchState(source, setState, stringLiteral); |
| 175 | } |
| 176 | source.next(); |
| 177 | setState(normal); |
| 178 | return "error"; |
| 179 | } |
| 180 | |
| 181 | |
| 182 | var wellKnownWords = (function() { |
nothing calls this directly
no test coverage detected