diff options
author | Ian Romanick <ian.d.romanick@intel.com> | 2010-05-10 10:47:14 -0700 |
---|---|---|
committer | Ian Romanick <ian.d.romanick@intel.com> | 2010-05-10 11:04:02 -0700 |
commit | 3521f0bdd52d226031a3b60e2cd89b4629147690 (patch) | |
tree | 2215d03df7219358862025081aa018f0295184dd /ast.h | |
parent | bdd9b1f3ffa2a195d983816adfeca20480256119 (diff) |
Store AST function call parameters in expressions
Previously the list of function call parameters was stored as a
circular list in ast_expression::subexpressions[1]. They are now
stored as a regular list in ast_expression::expressions.
Diffstat (limited to 'ast.h')
-rw-r--r-- | ast.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -178,7 +178,8 @@ public: /** - * List of expressions for an \c ast_sequence. + * List of expressions for an \c ast_sequence or parameters for an + * \c ast_function_call */ struct simple_node expressions; }; |