aboutsummaryrefslogtreecommitdiff
path: root/syntax.md
diff options
context:
space:
mode:
authorMelody Horn <melody@boringcactus.com>2020-11-03 18:12:32 -0700
committerMelody Horn <melody@boringcactus.com>2020-11-03 18:12:32 -0700
commit529afef55ce9412c2726e97c525eef34c567cbcb (patch)
treee8cc9f0c1ef978b9eb8bdfaa7b5149b5855056a4 /syntax.md
parent8779aff362fc03010a9656175a7cc26546e47e93 (diff)
downloadspec-529afef55ce9412c2726e97c525eef34c567cbcb.tar.gz
spec-529afef55ce9412c2726e97c525eef34c567cbcb.zip
stub out assignment statements
Diffstat (limited to 'syntax.md')
-rw-r--r--syntax.md13
1 files changed, 0 insertions, 13 deletions
diff --git a/syntax.md b/syntax.md
index 9d11600..083103c 100644
--- a/syntax.md
+++ b/syntax.md
@@ -3,19 +3,6 @@
### Statements
```PEG
-AssignmentStatement ← AssignmentStatementBody ';'
-AssignmentStatementBody ← AssignmentTargetExpression '=' Expression /
- AssignmentTargetExpression '+=' Expression /
- AssignmentTargetExpression '-=' Expression /
- AssignmentTargetExpression '*=' Expression /
- AssignmentTargetExpression '/=' Expression /
- AssignmentTargetExpression '%=' Expression /
- AssignmentTargetExpression '&=' Expression /
- AssignmentTargetExpression '^=' Expression /
- AssignmentTargetExpression '|=' Expression /
- AssignmentTargetExpression '++' /
- AssignmentTargetExpression '--'
-
ExpressionStatement ← Expression ';'
```