diff options
author | Christian <c@ethdev.com> | 2015-01-22 08:02:38 +0800 |
---|---|---|
committer | Christian <c@ethdev.com> | 2015-01-26 17:23:39 +0800 |
commit | 941c77c8fadd6195809cd2d572feb64478c4fb20 (patch) | |
tree | a4de3710aff5f3f2d9423565fd0e9ecc8708b5bf /ASTForward.h | |
parent | 19793dab093ae36b5f2b4d1cabfbf54bed3125b1 (diff) | |
download | dexon-solidity-941c77c8fadd6195809cd2d572feb64478c4fb20.tar.gz dexon-solidity-941c77c8fadd6195809cd2d572feb64478c4fb20.tar.zst dexon-solidity-941c77c8fadd6195809cd2d572feb64478c4fb20.zip |
Type resolution for function modifiers.
Diffstat (limited to 'ASTForward.h')
-rw-r--r-- | ASTForward.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ASTForward.h b/ASTForward.h index b86f18cf..aa5cd49c 100644 --- a/ASTForward.h +++ b/ASTForward.h @@ -44,6 +44,7 @@ class ParameterList; class FunctionDefinition; class VariableDeclaration; class ModifierDefinition; +class ModifierInvocation; class MagicVariableDeclaration; class TypeName; class ElementaryTypeName; @@ -74,6 +75,8 @@ class Identifier; class ElementaryTypeNameExpression; class Literal; +class VariableScope; + // Used as pointers to AST nodes, to be replaced by more clever pointers, e.g. pointers which do // not do reference counting but point to a special memory area that is completely released // explicitly. |