1
1
mirror of https://github.com/github/semantic.git synced 2025-01-01 11:46:14 +03:00

Fix and/or

This commit is contained in:
Timothy Clem 2017-08-24 14:51:08 -07:00
parent e25bdcda82
commit dc6ef33273
4 changed files with 19 additions and 26 deletions

View File

@ -1,13 +1,11 @@
(Program
(Binary
{+(Or
(Identifier)
{ (Other "and")
->(Other "or") }
(Identifier))
{+(Binary
(Binary
(Identifier))+}
(And
{ (Identifier)
->(Or
(Identifier)
(Other "or")
(Identifier))
(Other "and")
(Identifier))+})
(Identifier)) }
{ (Identifier)
->(Identifier) }))

View File

@ -1,13 +1,12 @@
(Program
(Binary
{+(And
(Identifier)
{ (Other "or")
->(Other "and") }
(Identifier))
{-(Binary
(Binary
(Identifier))+}
{-(Or
(Identifier)
(Identifier))-}
{-(And
(Or
(Identifier)
(Other "or")
(Identifier))
(Other "and")
(Identifier))-})

View File

@ -1,5 +1,4 @@
(Program
(Binary
(And
(Identifier)
(Other "and")
(Identifier)))

View File

@ -1,12 +1,9 @@
(Program
(Binary
(Or
(Identifier)
(Other "or")
(Identifier))
(Binary
(Binary
(And
(Or
(Identifier)
(Other "or")
(Identifier))
(Other "and")
(Identifier)))