diff options
author | Melody Horn <melody@boringcactus.com> | 2020-10-14 06:35:58 -0600 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2020-10-14 06:35:58 -0600 |
commit | 3d09fbe28463f310164a9dffaa30f0d31fde2d53 (patch) | |
tree | fbef2498192fdefce82f2e2b0e5f86926f5b1e81 | |
parent | d11bf26dc522456bd4eae2d94d4d61aa9c270e00 (diff) | |
download | spec-3d09fbe28463f310164a9dffaa30f0d31fde2d53.tar.gz spec-3d09fbe28463f310164a9dffaa30f0d31fde2d53.zip |
fix prioritization on Type
-rw-r--r-- | syntax.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -205,11 +205,11 @@ VariableDeclaration ← Type identifier ';' ## Types ``` -Type ← BasicType / - 'const' BasicType / +Type ← 'const' BasicType / BasicType '*' / BasicType '[' Expression ']' / - BasicType 'function' '(' (BasicType ',')* ')' + BasicType 'function' '(' (BasicType ',')* ')' / + BasicType BasicType ← 'void' / IntegerType / 'signed' IntegerType / |