(prefix, keyOrRef)
| 1507 | return name; |
| 1508 | } |
| 1509 | getValue(prefix, keyOrRef) { |
| 1510 | const vs = this._values[prefix]; |
| 1511 | if (!vs) |
| 1512 | return; |
| 1513 | return vs.get(keyOrRef); |
| 1514 | } |
| 1515 | scopeRefs(scopeName, values = this._values) { |
| 1516 | return this._reduceValues(values, (name) => { |
| 1517 | if (name.scopePath === undefined) |