aboutsummaryrefslogtreecommitdiffstats
path: root/docs/grammar.txt
diff options
context:
space:
mode:
authorFederico Bond <federicobond@gmail.com>2017-01-11 11:51:28 +0800
committerFederico Bond <federicobond@gmail.com>2017-01-11 12:33:33 +0800
commitd61b911a3a02962d5c38ad8b77ab650352529659 (patch)
tree190f2dba6d00d6f918333e45d8cb7aec825f6a9c /docs/grammar.txt
parent26a90af4d2ffb6a78056cc825f490096e4cc7176 (diff)
downloaddexon-solidity-d61b911a3a02962d5c38ad8b77ab650352529659.tar
dexon-solidity-d61b911a3a02962d5c38ad8b77ab650352529659.tar.gz
dexon-solidity-d61b911a3a02962d5c38ad8b77ab650352529659.tar.bz2
dexon-solidity-d61b911a3a02962d5c38ad8b77ab650352529659.tar.lz
dexon-solidity-d61b911a3a02962d5c38ad8b77ab650352529659.tar.xz
dexon-solidity-d61b911a3a02962d5c38ad8b77ab650352529659.tar.zst
dexon-solidity-d61b911a3a02962d5c38ad8b77ab650352529659.zip
grammar.txt: Move StorageLocation? up to VariableDeclaration
Diffstat (limited to 'docs/grammar.txt')
-rw-r--r--docs/grammar.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/grammar.txt b/docs/grammar.txt
index b5d2b780..2300dd00 100644
--- a/docs/grammar.txt
+++ b/docs/grammar.txt
@@ -35,10 +35,10 @@ TypeNameList = '(' ( TypeName (',' TypeName )* )? ')'
// semantic restriction: mappings and structs (recursively) containing mappings
// are not allowed in argument lists
-VariableDeclaration = TypeName Identifier
+VariableDeclaration = TypeName StorageLocation? Identifier
TypeName = ElementaryTypeName
- | UserDefinedTypeName StorageLocation?
+ | UserDefinedTypeName
| Mapping
| ArrayTypeName
| FunctionTypeName
@@ -46,7 +46,7 @@ TypeName = ElementaryTypeName
UserDefinedTypeName = Identifier ( '.' Identifier )*
Mapping = 'mapping' '(' ElementaryTypeName '=>' TypeName ')'
-ArrayTypeName = TypeName '[' Expression? ']' StorageLocation?
+ArrayTypeName = TypeName '[' Expression? ']'
FunctionTypeName = 'function' TypeNameList ( 'internal' | 'external' | 'constant' | 'payable' )*
( 'returns' TypeNameList )?
StorageLocation = 'memory' | 'storage'