diff options
author | Liana Husikyan <liana@ethdev.com> | 2015-02-09 09:06:30 +0800 |
---|---|---|
committer | Liana Husikyan <liana@ethdev.com> | 2015-02-09 09:06:30 +0800 |
commit | 2a5c2578bd7e07326412ac0345ed5f5283908ccb (patch) | |
tree | 863e089d25f486125099417bcc8f963a034bf41f /AST.h | |
parent | a66db516fb1025b406c8fcdb694b7fb760f84695 (diff) | |
download | dexon-solidity-2a5c2578bd7e07326412ac0345ed5f5283908ccb.tar.gz dexon-solidity-2a5c2578bd7e07326412ac0345ed5f5283908ccb.tar.zst dexon-solidity-2a5c2578bd7e07326412ac0345ed5f5283908ccb.zip |
- implemented Empty parameter name story. Now the name of input/return parameters of function can be not specified.
- added appropriate tests
Conflicts:
test/SolidityEndToEndTest.cpp
test/SolidityNameAndTypeResolution.cpp
Diffstat (limited to 'AST.h')
-rw-r--r-- | AST.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -250,7 +250,7 @@ public: /// Returns the constructor or nullptr if no constructor was specified. FunctionDefinition const* getConstructor() const; - /// Returns the fallback function or nullptr if no constructor was specified. + /// Returns the fallback function or nullptr if no fallback function was specified. FunctionDefinition const* getFallbackFunction() const; private: |