UNPKG

@powerlang/egg-js

Version:

A Smalltalk VM that runs on top of JavaScript

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