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 SOpAssign = class extends SOperation { constructor() { super(); this._assignees = nil; } acceptVisitor_(visitor) { return visitor.visitOpAssign_(this); } assignees() { return this._assignees; } assignees_(aCollection) { this._assignees = aCollection; return this; } } export default SOpAssign