diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2021-01-18 14:52:33 -0800 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2021-01-18 14:52:33 -0800 |
| commit | 8df395e7015d68518f125c71cabaf5666ff9a573 (patch) | |
| tree | 30f684ae1fc61633aed4503d9f23e2f5e22425cc /grammars/bp.bp | |
| parent | ac51181f34e91572ba54853de98095f2c6aefd5a (diff) | |
Fixed some grammar bugs
Diffstat (limited to 'grammars/bp.bp')
| -rw-r--r-- | grammars/bp.bp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/grammars/bp.bp b/grammars/bp.bp index 7379dfe..0b222ca 100644 --- a/grammars/bp.bp +++ b/grammars/bp.bp @@ -24,8 +24,8 @@ suffixed-pat: ( / Not-eq-pat ) -Eq-pat: @first=pat__"=="__@second=pat -Not-eq-pat: @first=pat__"!="__@second=pat +Eq-pat: @first=(suffixed-pat / simple-pat)__"=="__@second=pat +Not-eq-pat: @first=(suffixed-pat / simple-pat)__"!="__@second=pat Dot: `. !`. String: ( |
