aboutsummaryrefslogtreecommitdiffstats
path: root/AST.h
diff options
context:
space:
mode:
authorLiana Husikyan <liana@ethdev.com>2015-03-27 20:28:32 +0800
committerLiana Husikyan <liana@ethdev.com>2015-03-27 20:28:32 +0800
commita3d829d074859d748f1fd392acb8b5883f646e61 (patch)
tree83297cd3280973d788bc366bb04bf83c3ef339b0 /AST.h
parentb1ca27ea93907dc500d0b84298f5d63a9d4a7c1d (diff)
downloaddexon-solidity-a3d829d074859d748f1fd392acb8b5883f646e61.tar.gz
dexon-solidity-a3d829d074859d748f1fd392acb8b5883f646e61.tar.zst
dexon-solidity-a3d829d074859d748f1fd392acb8b5883f646e61.zip
added externalTypes function to functionType
removed flag for externalSigniture
Diffstat (limited to 'AST.h')
-rw-r--r--AST.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/AST.h b/AST.h
index abcae83c..00ad3307 100644
--- a/AST.h
+++ b/AST.h
@@ -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 types (external types if isExternalCall) of the
+ /// That consists of the name of the function followed by the types of the
/// arguments separated by commas all enclosed in parentheses without any spaces.
- std::string externalSignature(bool isExternalCall = false) const;
+ std::string externalSignature() const;
private:
bool m_isConstructor;