(path)
| 230 | } |
| 231 | |
| 232 | function availableVariables(path) { |
| 233 | return _availableIdentifiers(path, isVariableIdentifier); |
| 234 | } |
| 235 | |
| 236 | function availableFunctions(path) { |
| 237 | return _availableIdentifiers(path, isFunctionIdentifier); |
no test coverage detected