From a2c615fe781cc64a4603d6ba198ea4fd91b36c8d Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Wed, 3 Feb 2010 19:40:03 +0000 Subject: Here's the new build you need. I fixed it so you can use complex expressions in function calls. --- src/build.y | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/build.y b/src/build.y index 8cfc526..4190dbc 100644 --- a/src/build.y +++ b/src/build.y @@ -241,8 +241,8 @@ func_params: | func_param_list ; -func_param_list: { bld.xAst.openBranch(); } value - | func_param_list ',' { bld.xAst.openBranch(); } value +func_param_list: { bld.xAst.openBranch(); } expr + | func_param_list ',' { bld.xAst.openBranch(); } expr ; function: UNDEF '(' { -- cgit v1.2.3