import ParsingDfa4Table from "../../parsing/parsing_dfa_4table.js"; /** * DFA based parser for parsing a STEP comment. */ export default class StepCommentParser extends ParsingDfa4Table { /** * Construct the DFA */ constructor(); /** * Match a STEP comment. * * @param input The input buffer to match against. * @param cursor The cursor to test the match against. * @param endCursor The end point to look at in the buffer. * @return {number | undefined} The end of the match. */ match: (input: Uint8Array, cursor: number, endCursor: number) => number | undefined; static readonly Instance: StepCommentParser; } //# sourceMappingURL=step_comment_parser.d.ts.map