diff options
author | Liana Husikyan <liana@ethdev.com> | 2015-03-24 18:11:27 +0800 |
---|---|---|
committer | Liana Husikyan <liana@ethdev.com> | 2015-03-25 20:59:46 +0800 |
commit | 9986b072ad471908df4402ef860e58e331035948 (patch) | |
tree | 6bf7625fdbfe4f76e655027bdb421f084f6a58df /AST.h | |
parent | 701b34fbeb1bd08445aad55f82672d35343f5a44 (diff) | |
download | dexon-solidity-9986b072ad471908df4402ef860e58e331035948.tar.gz dexon-solidity-9986b072ad471908df4402ef860e58e331035948.tar.zst dexon-solidity-9986b072ad471908df4402ef860e58e331035948.zip |
renamed externalTypes to externalSignature
Diffstat (limited to 'AST.h')
-rw-r--r-- | AST.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -421,10 +421,10 @@ public: /// Checks that all parameters have allowed types and calls checkTypeRequirements on the body. void checkTypeRequirements(); - /// @returns the canonical signature of the function - /// That consists of the name of the function followed by the types of the + /// @returns the external signature of the function + /// That consists of the name of the function followed by the external types of the /// arguments separated by commas all enclosed in parentheses without any spaces. - std::string externalTypes() const; + std::string externalSignature() const; private: bool m_isConstructor; |