(str, pos)
| 196 | // explicitly defined types in the analysis. |
| 197 | |
| 198 | function skipSpace(str, pos) { |
| 199 | while (/\s/.test(str.charAt(pos))) ++pos; |
| 200 | return pos; |
| 201 | } |
| 202 | |
| 203 | function isIdentifier(string) { |
| 204 | if (!acorn.isIdentifierStart(string.charCodeAt(0))) return false; |
no outgoing calls
no test coverage detected
searching dependent graphs…