aboutsummaryrefslogtreecommitdiffstats
path: root/AST.h
diff options
context:
space:
mode:
authorChristian <c@ethdev.com>2014-11-12 00:41:48 +0800
committerChristian <c@ethdev.com>2014-11-12 00:41:48 +0800
commit8c6bf21c01d3ae3c22301bbe0b039aa18e1f58a6 (patch)
treeba26de04d610fcc09c96f366a35bb148180a4e21 /AST.h
parenta0c72065fee89c4558eeb4a98e5273633635bc39 (diff)
downloaddexon-solidity-8c6bf21c01d3ae3c22301bbe0b039aa18e1f58a6.tar.gz
dexon-solidity-8c6bf21c01d3ae3c22301bbe0b039aa18e1f58a6.tar.zst
dexon-solidity-8c6bf21c01d3ae3c22301bbe0b039aa18e1f58a6.zip
Provide interface for calls in JSON and some other formatting changes.
Diffstat (limited to 'AST.h')
-rw-r--r--AST.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/AST.h b/AST.h
index 19328e5f..7b266f13 100644
--- a/AST.h
+++ b/AST.h
@@ -120,6 +120,8 @@ public:
std::vector<ASTPointer<VariableDeclaration>> const& getStateVariables() const { return m_stateVariables; }
std::vector<ASTPointer<FunctionDefinition>> const& getDefinedFunctions() const { return m_definedFunctions; }
+ /// Returns the functions that make up the calling interface in the intended order.
+ std::vector<FunctionDefinition const*> getInterfaceFunctions() const;
private:
std::vector<ASTPointer<StructDefinition>> m_definedStructs;
std::vector<ASTPointer<VariableDeclaration>> m_stateVariables;