@powerlang/egg-js
Version:
A Smalltalk VM that runs on top of JavaScript
27 lines (18 loc) • 372 B
JavaScript
import SOperation from './SOperation.js';
let SOpDropToS = class extends SOperation {
constructor() {
super();
this._count = nil;
}
acceptVisitor_(visitor) {
return visitor.visitOpDropToS_(this);
}
count() {
return this._count;
}
count_(anInteger) {
this._count = anInteger;
return this;
}
}
export default SOpDropToS