aboutsummaryrefslogtreecommitdiff
path: root/syntax.md
diff options
context:
space:
mode:
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? ';'