Skip to content

Commit

Permalink
Fix #275
Browse files Browse the repository at this point in the history
  • Loading branch information
yhirose committed Jul 15, 2023
1 parent abac828 commit 6c1089b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified docs/native.wasm
Binary file not shown.
2 changes: 1 addition & 1 deletion peglib.h
Original file line number Diff line number Diff line change
Expand Up @@ -3325,7 +3325,7 @@ class ParserGenerator {
g["NegatedClass"], g["ClassI"], g["Class"], g["DOT"]);

g["Identifier"] <= seq(g["IdentCont"], g["Spacing"]);
g["IdentCont"] <= seq(g["IdentStart"], zom(g["IdentRest"]));
g["IdentCont"] <= tok(seq(g["IdentStart"], zom(g["IdentRest"])));

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

0 comments on commit 6c1089b

Please sign in to comment.