(string)
| 201 | } |
| 202 | |
| 203 | function isIdentifier(string) { |
| 204 | if (!acorn.isIdentifierStart(string.charCodeAt(0))) return false; |
| 205 | for (var i = 1; i < string.length; i++) |
| 206 | if (!acorn.isIdentifierChar(string.charCodeAt(i))) return false; |
| 207 | return true; |
| 208 | } |
| 209 | |
| 210 | function parseLabelList(scope, str, pos, close) { |
| 211 | var labels = [], types = [], madeUp = false; |
no outgoing calls
no test coverage detected
searching dependent graphs…