diff options
author | Federico Bond <federicobond@gmail.com> | 2016-12-27 09:57:00 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-27 09:57:00 +0800 |
commit | 890a8818b5455eb067b5ee2ed6c9d32623c0c94c (patch) | |
tree | 6dec744b985830dbfd2622c223626be50744b1a1 /docs | |
parent | 507525be5f3fec5860d226010beea6550373fd0b (diff) | |
download | dexon-solidity-890a8818b5455eb067b5ee2ed6c9d32623c0c94c.tar dexon-solidity-890a8818b5455eb067b5ee2ed6c9d32623c0c94c.tar.gz dexon-solidity-890a8818b5455eb067b5ee2ed6c9d32623c0c94c.tar.bz2 dexon-solidity-890a8818b5455eb067b5ee2ed6c9d32623c0c94c.tar.lz dexon-solidity-890a8818b5455eb067b5ee2ed6c9d32623c0c94c.tar.xz dexon-solidity-890a8818b5455eb067b5ee2ed6c9d32623c0c94c.tar.zst dexon-solidity-890a8818b5455eb067b5ee2ed6c9d32623c0c94c.zip |
Add unimplemented functions to grammar
Diffstat (limited to 'docs')
-rw-r--r-- | docs/grammar.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/grammar.txt b/docs/grammar.txt index 5fac96a1..c9f7f448 100644 --- a/docs/grammar.txt +++ b/docs/grammar.txt @@ -23,7 +23,7 @@ StructDefinition = 'struct' Identifier '{' ModifierDefinition = 'modifier' Identifier ParameterList? Block FunctionDefinition = 'function' Identifier? ParameterList ( FunctionCall | Identifier | 'constant' | 'payable' | 'external' | 'public' | 'internal' | 'private' )* - ( 'returns' ParameterList )? Block + ( 'returns' ParameterList )? ( ';' | Block ) EventDefinition = 'event' Identifier IndexedParameterList 'anonymous'? ';' EnumValue = Identifier |