aboutsummaryrefslogtreecommitdiffstats
path: root/docs/grammar.txt
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2018-07-31 07:27:34 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2018-07-31 07:28:01 +0800
commit9436fd9363cb827b889ec6593fcd2241bee6cd8e (patch)
tree77f5ac98f9de2bba9961f36c35df0ad2ac8ec7b4 /docs/grammar.txt
parentbc13365a7b3920c361ff2ae5f1a9bb7e98ad07b2 (diff)
downloaddexon-solidity-9436fd9363cb827b889ec6593fcd2241bee6cd8e.tar
dexon-solidity-9436fd9363cb827b889ec6593fcd2241bee6cd8e.tar.gz
dexon-solidity-9436fd9363cb827b889ec6593fcd2241bee6cd8e.tar.bz2
dexon-solidity-9436fd9363cb827b889ec6593fcd2241bee6cd8e.tar.lz
dexon-solidity-9436fd9363cb827b889ec6593fcd2241bee6cd8e.tar.xz
dexon-solidity-9436fd9363cb827b889ec6593fcd2241bee6cd8e.tar.zst
dexon-solidity-9436fd9363cb827b889ec6593fcd2241bee6cd8e.zip
grammar: remove stray IdentifierList rule
This was left in #4274 (dbd0723)
Diffstat (limited to 'docs/grammar.txt')
-rw-r--r--docs/grammar.txt1
1 files changed, 0 insertions, 1 deletions
diff --git a/docs/grammar.txt b/docs/grammar.txt
index 8e91a7d6..809fcffc 100644
--- a/docs/grammar.txt
+++ b/docs/grammar.txt
@@ -79,7 +79,6 @@ Return = 'return' Expression?
Throw = 'throw'
EmitStatement = 'emit' FunctionCall
VariableDefinition = (VariableDeclaration | '(' VariableDeclaration? (',' VariableDeclaration? )* ')' ) ( '=' Expression )?
-IdentifierList = '(' ( Identifier? ',' )* Identifier? ')'
// Precedence by order (see github.com/ethereum/solidity/pull/732)
Expression