import ByteBitSet from "./char_bit_set.js"; /** * Constants to be used for parsing value or STEP. */ export default class ParsingConstants { static readonly SPACE: number; static readonly STAR: number; static readonly SLASH: number; static readonly TAB: number; static readonly NEWLINE: number; static readonly HASH: number; static readonly OPEN_PAREN: number; static readonly CLOSE_PAREN: number; static readonly COMMA: number; static readonly DOLLAR: number; static readonly COLON: number; static readonly SEMICOLON: number; static readonly BSLASH: number; static readonly ZERO: number; static readonly NINE: number; static readonly SIGN: number; static readonly PLUS: number; static readonly SIGN_NUM: number; static readonly PLUS_NUM: number; static readonly DOT: number; static readonly DOT_NUM: number; static readonly CAPITAL_X: number; static readonly CAPITAL_S: number; static readonly CAPITAL_P: number; static readonly LOWER_CASE_X: number; static readonly A: number; static readonly a: number; static readonly I: number; static readonly Z: number; static readonly F: number; static readonly LOWER_A: number; static readonly LOWER_Z: number; static readonly LOWER_F: number; static readonly E: number; static readonly LOWER_E: number; static readonly UNDERSCORE: number; static readonly EQUALS: number; static readonly QUOTE: number; static readonly DOUBLEQUOTE: number; static readonly DASH: number; static readonly WHITE_SPACE: Uint8Array; static readonly WHITE_SPACE_SET: ByteBitSet; static readonly COMMA_END_BRACE: Uint8Array; static readonly COMMA_END_SET: ByteBitSet; } //# sourceMappingURL=parsing_constants.d.ts.map