aboutsummaryrefslogtreecommitdiffstats
path: root/AST.h
diff options
context:
space:
mode:
authorLiana Husikyan <liana@ethdev.com>2015-02-09 09:06:30 +0800
committerLiana Husikyan <liana@ethdev.com>2015-02-09 09:06:30 +0800
commit2a5c2578bd7e07326412ac0345ed5f5283908ccb (patch)
tree863e089d25f486125099417bcc8f963a034bf41f /AST.h
parenta66db516fb1025b406c8fcdb694b7fb760f84695 (diff)
downloaddexon-solidity-2a5c2578bd7e07326412ac0345ed5f5283908ccb.tar
dexon-solidity-2a5c2578bd7e07326412ac0345ed5f5283908ccb.tar.gz
dexon-solidity-2a5c2578bd7e07326412ac0345ed5f5283908ccb.tar.bz2
dexon-solidity-2a5c2578bd7e07326412ac0345ed5f5283908ccb.tar.lz
dexon-solidity-2a5c2578bd7e07326412ac0345ed5f5283908ccb.tar.xz
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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/AST.h b/AST.h
index 47f2a40c..98f28afb 100644
--- a/AST.h
+++ b/AST.h
@@ -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: