diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-04-22 00:35:15 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-11-22 11:33:05 +0800 |
commit | b2f2b36b7c77859860a68aa6991a3768a680ad5f (patch) | |
tree | a48d6307dea7fa0f091d5782a6bec382bdef5180 /docs/julia.rst | |
parent | be470f107eac284ff599dd5b0632f396d86dd025 (diff) | |
download | dexon-solidity-b2f2b36b7c77859860a68aa6991a3768a680ad5f.tar.gz dexon-solidity-b2f2b36b7c77859860a68aa6991a3768a680ad5f.tar.zst dexon-solidity-b2f2b36b7c77859860a68aa6991a3768a680ad5f.zip |
Remove subassembly
Diffstat (limited to 'docs/julia.rst')
-rw-r--r-- | docs/julia.rst | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/docs/julia.rst b/docs/julia.rst index 988f1980..054f8627 100644 --- a/docs/julia.rst +++ b/docs/julia.rst @@ -75,8 +75,7 @@ Grammar:: Expression | Switch | ForLoop | - BreakContinue | - SubAssembly + BreakContinue FunctionDefinition = 'function' Identifier '(' TypedIdentifierList? ')' ( '->' TypedIdentifierList )? Block @@ -94,8 +93,6 @@ Grammar:: 'for' Block Expression Block Block BreakContinue = 'break' | 'continue' - SubAssembly = - 'assembly' Identifier Block FunctionCall = Identifier '(' ( Expression ( ',' Expression )* )? ')' Identifier = [a-zA-Z_$] [a-zA-Z_0-9]* |