(source, setState)
| 155 | } |
| 156 | |
| 157 | function stringGap(source, setState) { |
| 158 | if (source.eat('\\')) { |
| 159 | return switchState(source, setState, stringLiteral); |
| 160 | } |
| 161 | source.next(); |
| 162 | setState(normal); |
| 163 | return "error"; |
| 164 | } |
| 165 | |
| 166 | |
| 167 | var wellKnownWords = (function() { |
nothing calls this directly
no test coverage detected