diff options
author | Pablo Galindo Salgado <Pablogsal@gmail.com> | 2022-02-10 13:12:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-10 13:12:14 (GMT) |
commit | 390459de6db1e68b79c0897cc88c0d562693ec5c (patch) | |
tree | 797c720a46e689baa63cc29c59a3f41511a0fb6c /Parser/pegen.h | |
parent | 2cea8c29cf975a8ad7d8c3ff19d1e836c2d54707 (diff) | |
download | cpython-390459de6db1e68b79c0897cc88c0d562693ec5c.zip cpython-390459de6db1e68b79c0897cc88c0d562693ec5c.tar.gz cpython-390459de6db1e68b79c0897cc88c0d562693ec5c.tar.bz2 |
Allow the parser to avoid nested processing of invalid rules (GH-31252)
Diffstat (limited to 'Parser/pegen.h')
-rw-r--r-- | Parser/pegen.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Parser/pegen.h b/Parser/pegen.h index 061ca3a..77d5ca8 100644 --- a/Parser/pegen.h +++ b/Parser/pegen.h @@ -78,7 +78,6 @@ typedef struct { Token *known_err_token; int level; int call_invalid_rules; - int in_raw_rule; } Parser; typedef struct { |