diff options
author | Liana Husikyan <liana@ethdev.com> | 2015-03-25 20:58:15 +0800 |
---|---|---|
committer | Liana Husikyan <liana@ethdev.com> | 2015-03-25 21:20:13 +0800 |
commit | 8f747aab0f977e62c344f57fe922ba6b0fda3a64 (patch) | |
tree | f90a3d47e3b0dafcbd4f16094edf7f6bf69de1d5 /AST.h | |
parent | 9986b072ad471908df4402ef860e58e331035948 (diff) | |
download | dexon-solidity-8f747aab0f977e62c344f57fe922ba6b0fda3a64.tar dexon-solidity-8f747aab0f977e62c344f57fe922ba6b0fda3a64.tar.gz dexon-solidity-8f747aab0f977e62c344f57fe922ba6b0fda3a64.tar.bz2 dexon-solidity-8f747aab0f977e62c344f57fe922ba6b0fda3a64.tar.lz dexon-solidity-8f747aab0f977e62c344f57fe922ba6b0fda3a64.tar.xz dexon-solidity-8f747aab0f977e62c344f57fe922ba6b0fda3a64.tar.zst dexon-solidity-8f747aab0f977e62c344f57fe922ba6b0fda3a64.zip |
tests for external types
Diffstat (limited to 'AST.h')
-rw-r--r-- | AST.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -422,9 +422,9 @@ public: void checkTypeRequirements(); /// @returns the external signature of the function - /// That consists of the name of the function followed by the external types of the + /// That consists of the name of the function followed by the types(external types if isExternalCall) of the /// arguments separated by commas all enclosed in parentheses without any spaces. - std::string externalSignature() const; + std::string externalSignature(bool isExternalCall = false) const; private: bool m_isConstructor; |