UNPKG

@neo-one/smart-contract-compiler

Version:

NEO•ONE TypeScript smart contract compiler.

12 lines (10 loc) 219 B
import { Jump } from './Jump'; export class Call extends Jump { constructor(pc) { super('CALL', pc); } plus(pc) { return new Call(this.pc.plus(pc)); } } //# sourceMappingURL=Call.js.map