From f8f944da391724cfe819bf8067b8fa1f74ceb365 Mon Sep 17 00:00:00 2001 From: Alessandro Coglio Date: Sat, 25 Jun 2022 15:24:53 -0700 Subject: [PATCH] [ABNF] Add forgotten symbols. These are for the recently added shift and bitwise logical operators. They should have been also included in the rule `symbol` for symbol tokens. This commit remedies that. --- docs/grammar/abnf-grammar.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/grammar/abnf-grammar.txt b/docs/grammar/abnf-grammar.txt index ba7e197f79..c6c4a1fdbb 100644 --- a/docs/grammar/abnf-grammar.txt +++ b/docs/grammar/abnf-grammar.txt @@ -185,6 +185,8 @@ atomic-literal = numeric-literal symbol = "!" / "&&" / "||" / "==" / "!=" / "<" / "<=" / ">" / ">=" + / "&" / "|" / "^" + / "<<" / ">>" / "+" / "-" / "*" / "/" / "**" / "=" / "(" / ")"