UNPKG

@neo-one/smart-contract-compiler

Version:

NEO•ONE TypeScript smart contract compiler.

9 lines (8 loc) 280 B
import { ProgramCounter } from './ProgramCounter'; export declare class KnownProgramCounter extends ProgramCounter { private readonly pc; constructor(pc: number); plus(offset: number): ProgramCounter; equals(other: ProgramCounter): boolean; getPC(): number; }