fix: add a semicolon after SKIP macros

This commit is contained in:
Amaan Qureshi 2024-04-07 19:08:07 -04:00
parent abed43a169
commit a9172e0caa

View file

@ -995,7 +995,7 @@ impl Generator {
if action.in_main_token {
add!(self, "ADVANCE({});", action.state);
} else {
add!(self, "SKIP({})", action.state);
add!(self, "SKIP({});", action.state);
}
}