UNPKG

@powerlang/egg-js

Version:

A Smalltalk VM that runs on top of JavaScript

27 lines (18 loc) 393 B
import SOperation from './SOperation.js'; let SOpLoadRfromStack = class extends SOperation { constructor() { super(); this._index = nil; } acceptVisitor_(visitor) { return visitor.visitOpLoadRfromStack_(this); } index() { return this._index; } index_(anInteger) { this._index = anInteger; return this; } } export default SOpLoadRfromStack