@powerlang/egg-js
Version:
A Smalltalk VM that runs on top of JavaScript
27 lines (18 loc) • 417 B
JavaScript
import SInlinerOperation from './SInlinerOperation.js';
let SOpStoreRintoFrame = class extends SInlinerOperation {
constructor() {
super();
this._index = nil;
}
acceptVisitor_(visitor) {
return visitor.visitOpStoreRintoFrame_(this);
}
index() {
return this._index;
}
index_(anInteger) {
this._index = anInteger;
return this;
}
}
export default SOpStoreRintoFrame