UNPKG

@gyro-lang/core

Version:

Fast, Performant and scalable programming language designed for string manipulation and deep recursion.

14 lines (13 loc) 281 B
declare class InputStream { private input; pos: number; line: number; col: number; constructor(input: string); next(): string; peek(offset?: number): string; eof(): boolean; reset(): void; croak(msg: string): void; } export { InputStream };