diff options
author | chriseth <chris@ethereum.org> | 2017-12-01 21:10:49 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2017-12-01 23:18:01 +0800 |
commit | 43bb915454e210ed7c201eb58b33c7ffe8dfbdb1 (patch) | |
tree | 7c7af1babeaef919afce5be106470061fcd0944b /libsolidity/inlineasm/AsmData.h | |
parent | d0af0c14841648365ad05ecc626e672a16df5b5c (diff) | |
download | dexon-solidity-43bb915454e210ed7c201eb58b33c7ffe8dfbdb1.tar.gz dexon-solidity-43bb915454e210ed7c201eb58b33c7ffe8dfbdb1.tar.zst dexon-solidity-43bb915454e210ed7c201eb58b33c7ffe8dfbdb1.zip |
Rename arguments to paramaters and returns to returnVariables.
Diffstat (limited to 'libsolidity/inlineasm/AsmData.h')
-rw-r--r-- | libsolidity/inlineasm/AsmData.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/inlineasm/AsmData.h b/libsolidity/inlineasm/AsmData.h index a792a1b8..e1753af4 100644 --- a/libsolidity/inlineasm/AsmData.h +++ b/libsolidity/inlineasm/AsmData.h @@ -67,7 +67,7 @@ struct VariableDeclaration { SourceLocation location; TypedNameList variables; s /// Block that creates a scope (frees declared stack variables) struct Block { SourceLocation location; std::vector<Statement> statements; }; /// Function definition ("function f(a, b) -> (d, e) { ... }") -struct FunctionDefinition { SourceLocation location; std::string name; TypedNameList arguments; TypedNameList returns; Block body; }; +struct FunctionDefinition { SourceLocation location; std::string name; TypedNameList parameters; TypedNameList returnVariables; Block body; }; /// Conditional execution without "else" part. struct If { SourceLocation location; std::shared_ptr<Statement> condition; Block body; }; /// Switch case or default case |