UNPKG

@neo-one/smart-contract-compiler

Version:

NEO•ONE TypeScript smart contract compiler.

8 lines (7 loc) 264 B
import { Jump } from './Jump'; import { ProgramCounter } from './ProgramCounter'; export declare type JmpOp = 'JMP' | 'JMPIF' | 'JMPIFNOT'; export declare class Jmp extends Jump<JmpOp> { constructor(op: JmpOp, pc: ProgramCounter); plus(pc: number): Jmp; }