Updated Automator EBNF (markdown)

Andrei Andreev 2019-02-03 21:58:41 +03:00
parent 02a7d1cae6
commit 9c2f7e7421

@ -5,7 +5,7 @@ Paste into "Edit Grammar" and then switch to "View Diagram"
```
Script ::= Line*
Line ::= ( Expression | Comment | "" ) "\n"
Line ::= ( Expression | Comment | Whitespace ) "\n"
Expression ::= Buy | Wait | If | Unlock | Start | Change | Toggle | Respec | Eternity | Stop | Load | Notify | VarDeclaration
Buy ::= "BUY" ( BuyStudy | BuyTT )
@ -57,4 +57,5 @@ String ::= '"' Text '"'
Comment ::= "//" Text
Text ::= Character*
Whitespace ::= " "*
```