export declare const MAX_VELAR_SOURCE_CODE_UNITS: number; /** * D90 (compiler-front-2): how many diagnostics one lex may report. A minified * JavaScript file pasted into a `.vel` buffer reports once per character, and * the language server re-lexes that buffer on every keystroke, so an uncapped * lex retains millions of `Diagnostic` objects for a file nobody can read * anyway. The cap spends its last slot on saying that it closed, so the tail * is never dropped silently. */ export declare const MAX_LEX_DIAGNOSTICS = 1000; /** * TX-U3: the two Text limits a literal argument can be checked against before * the program runs. They restate what `packages/compiler/runtime/text.js` and * the `velar/text` pattern boundary enforce; the compile-time report exists to * move a certain runtime failure earlier, so the numbers have to be the same * numbers. */ export declare const MAX_TEXT_CODE_UNITS: number; export declare const MAX_TEXT_PATTERN_CODE_UNITS = 4096; //# sourceMappingURL=limits.d.ts.map