aboutsummaryrefslogtreecommitdiffstats
path: root/AST.h
diff options
context:
space:
mode:
authorLiana Husikyan <liana@ethdev.com>2015-03-24 18:11:27 +0800
committerLiana Husikyan <liana@ethdev.com>2015-03-25 20:59:46 +0800
commit9986b072ad471908df4402ef860e58e331035948 (patch)
tree6bf7625fdbfe4f76e655027bdb421f084f6a58df /AST.h
parent701b34fbeb1bd08445aad55f82672d35343f5a44 (diff)
downloaddexon-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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/AST.h b/AST.h
index c5cd2e5b..937c2cea 100644
--- a/AST.h
+++ b/AST.h
@@ -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;