We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7edc0fb commit b4a4e7cCopy full SHA for b4a4e7c
src/parser/lexer.ts
@@ -243,6 +243,9 @@ const insideLongGlyph = specificSpecialUcsur(END_OF_REVERSE_LONG_GLYPH)
243
.skip(specificSpecialUcsur(START_OF_LONG_GLYPH))
244
.skip(spaces)
245
.map<Token>((words) => ({ type: "inside long glyph", words }));
246
+
247
+Parser.startCache(cache);
248
249
/** Parses a token. */
250
export const token = choiceOnlyOne<Token>(
251
spaceLongGlyph,
@@ -267,3 +270,5 @@ export const token = choiceOnlyOne<Token>(
267
270
kind: "cartouche",
268
271
})),
269
272
);
273
274
+Parser.endCache();
0 commit comments