aboutsummaryrefslogtreecommitdiff
path: root/syntax.md
diff options
context:
space:
mode:
authorMelody Horn <melody@boringcactus.com>2020-11-02 21:36:36 -0700
committerMelody Horn <melody@boringcactus.com>2020-11-02 21:36:36 -0700
commite59e69118302b6a8a9d8c09ed2d5032d432ad33a (patch)
tree74eb029a62f7ffd482fa6968cc965ecc6dbd587c /syntax.md
parent5f78969d4a71908fd8ae43c886614ef0e5664eb0 (diff)
downloadspec-e59e69118302b6a8a9d8c09ed2d5032d432ad33a.tar.gz
spec-e59e69118302b6a8a9d8c09ed2d5032d432ad33a.zip
add loops
Diffstat (limited to 'syntax.md')
-rw-r--r--syntax.md4
1 files changed, 0 insertions, 4 deletions
diff --git a/syntax.md b/syntax.md
index 74e5cc3..9f7fc59 100644
--- a/syntax.md
+++ b/syntax.md
@@ -3,10 +3,6 @@
### Statements
```PEG
-WhileStatement ← 'while' Expression Block
-DoWhileStatement ← 'do' Block 'while' Expression ';'
-ForStatement ← 'for' VariableDefinition? ';' Expression ';' AssignmentStatementBody? Block
-
FlowControlStatement ← 'continue' ';' /
'break' ';' /
'return' Expression? ';'