UNPKG

@ibm/ibmi-eventf-parser

Version:

Parse event files that are generated by IBM i compilers

27 lines (26 loc) 607 B
import { IRecordT } from "./IRecordT"; import { IRecord } from "./IRecord"; /** * This class represents a Map Start record in an events file. */ export declare class MapStartRecord implements IRecord { private version; private macroId; private line; constructor(version: number, macroId: number, line: number); getRecordType(): IRecordT; getVersion(): number; /** * Get the macro id. * * @return The macro id. */ getMacroId(): number; /** * Get the line. * * @return The line. */ getLine(): number; toString(): string; }