Skip to content

Commit 6c1089b

Browse files
committed
Fix #275
1 parent abac828 commit 6c1089b

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

docs/native.wasm

354 Bytes
Binary file not shown.

peglib.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3325,7 +3325,7 @@ class ParserGenerator {
33253325
g["NegatedClass"], g["ClassI"], g["Class"], g["DOT"]);
33263326

33273327
g["Identifier"] <= seq(g["IdentCont"], g["Spacing"]);
3328-
g["IdentCont"] <= seq(g["IdentStart"], zom(g["IdentRest"]));
3328+
g["IdentCont"] <= tok(seq(g["IdentStart"], zom(g["IdentRest"])));
33293329

33303330
const static std::vector<std::pair<char32_t, char32_t>> range = {
33313331
{0x0080, 0xFFFF}};

0 commit comments

Comments
 (0)