@powerlang/egg-js
Version:
A Smalltalk VM that runs on top of JavaScript
27 lines (18 loc) • 389 B
JavaScript
import SInlinerOperation from './SInlinerOperation.js';
let SOpJump = class extends SInlinerOperation {
constructor() {
super();
this._target = nil;
}
acceptVisitor_(visitor) {
return visitor.visitOpJump_(this);
}
target() {
return this._target;
}
target_(anInteger) {
this._target = anInteger;
return this;
}
}
export default SOpJump