UNPKG

@powerlang/egg-js

Version:

A Smalltalk VM that runs on top of JavaScript

33 lines (23 loc) 457 B
import SExpression from './SExpression.js'; let SPragma = class extends SExpression { constructor() { super(); this._name = nil; this._descriptor = nil; } descriptor() { return this._descriptor; } descriptor_(anFFIDescriptor) { this._descriptor = anFFIDescriptor; return this; } name() { return this._name; } name_(aString) { this._name = aString; return this; } } export default SPragma