UNPKG

@neo-one/smart-contract-compiler

Version:

NEO•ONE TypeScript smart contract compiler.

16 lines (14 loc) 409 B
import { Helper } from '../Helper'; export class MapEveryHelper extends Helper { constructor(options) { super(); this.each = options.each; } emit(sb, node, options) { sb.emitSysCall(node, 'Neo.Iterator.Create'); sb.emitHelper(node, options, sb.helpers.rawIteratorEvery({ each: this.each, })); } } //# sourceMappingURL=MapEveryHelper.js.map