UNPKG

@ibm/ibmi-eventf-parser

Version:

Parse event files that are generated by IBM i compilers

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