UNPKG

@powerlang/egg-js

Version:

A Smalltalk VM that runs on top of JavaScript

23 lines (15 loc) 302 B
import SExpression from './SExpression.js'; let SLiteralVar = class extends SExpression { constructor() { super(); this._index = nil; } index() { return this._index; } index_(anInteger) { this._index = anInteger; return this; } } export default SLiteralVar