@powerlang/egg-js
Version:
A Smalltalk VM that runs on top of JavaScript
17 lines (11 loc) • 397 B
JavaScript
import SDynamicBinding from './SDynamicBinding.js';
let SNestedDynamicBinding = class extends SDynamicBinding {
static decodeUsing_(aTreecodeDecoder) {
return aTreecodeDecoder.decodeNestedDynamicVar();
}
lookupWithin_(anEvaluationContext) {
this._cache = anEvaluationContext.staticBindingForNested_(this._name);
return this;
}
}
export default SNestedDynamicBinding