@neo-one/smart-contract-compiler
Version:
NEO•ONE TypeScript smart contract compiler.
12 lines (10 loc) • 367 B
JavaScript
import { BuiltinMemberValue } from '../BuiltinMemberValue';
export class WellKnownSymbolBase extends BuiltinMemberValue {
emit(sb, node, options) {
if (options.pushValue) {
sb.emitPushString(node, this.symbol);
sb.emitHelper(node, options, sb.helpers.wrapSymbol);
}
}
}
//# sourceMappingURL=WellKnownSymbolBase.js.map