(path, filter)
| 222 | } |
| 223 | |
| 224 | function _availableIdentifiers(path, filter) { |
| 225 | const available = new Array(); |
| 226 | for (const name of _availableIdentifierNamesGen(path, filter)) { |
| 227 | available.push(_identifier(name)); |
| 228 | } |
| 229 | return available; |
| 230 | } |
| 231 | |
| 232 | function availableVariables(path) { |
| 233 | return _availableIdentifiers(path, isVariableIdentifier); |
no test coverage detected