mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Added imports
This commit is contained in:
parent
f76616889a
commit
5abb9b6e41
@ -1,6 +1,11 @@
|
||||
ContractDefinition = ( 'contract' | 'library' ) Identifier
|
||||
ContractDefinition = ('import' Imports ';')*
|
||||
( 'contract' | 'library' ) Identifier
|
||||
( 'is' InheritanceSpecifier (',' InheritanceSpecifier )* )?
|
||||
'{' ContractPart* '}'
|
||||
Imports = StringLiteral ('as' Identifier)?
|
||||
| ('*' | Identifier) ('as' Identifier)? 'from' StringLiteral
|
||||
| '{' Identifier ('as' Identifier)? ( ',' Identifier ('as' Identifier)? )* '}' 'from' StringLiteral
|
||||
|
||||
ContractPart = StateVariableDeclaration | StructDefinition | ModifierDefinition | FunctionDefinition | EventDefinition | EnumDefinition
|
||||
|
||||
InheritanceSpecifier = Identifier ( '(' Expression ( ',' Expression )* ')' )?
|
||||
|
Loading…
Reference in New Issue
Block a user