@powerlang/egg-js
Version:
A Smalltalk VM that runs on top of JavaScript
23 lines (15 loc) • 313 B
JavaScript
import EggHeapObject from './EggHeapObject.js';
let EggExecutableCode = class extends EggHeapObject {
constructor() {
super();
this._code = nil;
}
code() {
return this._code;
}
code_(anObject) {
this._code = anObject;
return this;
}
}
export default EggExecutableCode