(prefix)
| 1093 | } |
| 1094 | // reserves unique name in the external scope |
| 1095 | scopeName(prefix) { |
| 1096 | return this._extScope.name(prefix); |
| 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); |