aboutsummaryrefslogtreecommitdiffstats
path: root/Parser.h
diff options
context:
space:
mode:
authorLu Guanqun <guanqun.lu@gmail.com>2015-01-30 01:26:00 +0800
committerLu Guanqun <guanqun.lu@gmail.com>2015-01-30 01:32:55 +0800
commit5c828dc8b25f223f45d85359dbbb5d9e275167c2 (patch)
tree290d64097f64744341cc147391693ef8c16a9055 /Parser.h
parent77384af827d7d941620552c4f5f740c3b7c576ef (diff)
downloaddexon-solidity-5c828dc8b25f223f45d85359dbbb5d9e275167c2.tar.gz
dexon-solidity-5c828dc8b25f223f45d85359dbbb5d9e275167c2.tar.zst
dexon-solidity-5c828dc8b25f223f45d85359dbbb5d9e275167c2.zip
implement named arguments
Diffstat (limited to 'Parser.h')
-rw-r--r--Parser.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Parser.h b/Parser.h
index d3bff67e..2a2f2312 100644
--- a/Parser.h
+++ b/Parser.h
@@ -72,7 +72,8 @@ private:
ASTPointer<Expression> parseUnaryExpression();
ASTPointer<Expression> parseLeftHandSideExpression();
ASTPointer<Expression> parsePrimaryExpression();
- std::vector<ASTPointer<Expression>> parseFunctionCallArguments();
+ std::vector<ASTPointer<Expression>> parseFunctionCallListArguments();
+ void parseFunctionCallArguments(std::vector<ASTPointer<Expression>> & _arguments, std::vector<std::string> & _names);
///@}
///@{