(prefixOrName, value)
| 1097 | } |
| 1098 | // reserves unique name in the external scope and assigns value to it |
| 1099 | scopeValue(prefixOrName, value) { |
| 1100 | const name = this._extScope.value(prefixOrName, value); |
| 1101 | const vs = this._values[name.prefix] || (this._values[name.prefix] = new Set()); |
| 1102 | vs.add(name); |
| 1103 | return name; |
| 1104 | } |
| 1105 | getScopeValue(prefix, keyOrRef) { |
| 1106 | return this._extScope.getValue(prefix, keyOrRef); |
| 1107 | } |
no test coverage detected