From ce10591c2048cc3c5e4979b15e14fecc2a384968 Mon Sep 17 00:00:00 2001 From: fche Date: Mon, 30 May 2005 21:28:44 +0000 Subject: 2005-05-30 Frank Ch. Eigler More fully parse & elaborate "expr in array" construct. * staptree.h (array_in): Make this unary. Update .cxx to match. * parse.cxx (parse_array_in): Rewrite. (parse_symbol_plain): Removed. Update .h to match. * elaborate.cxx (typeresolution_info::visit_array_in): New function. (find_array): Tentatively, accept arity=0. * translate.cxx (c_unparser::c_assign): New functions to eliminate much ugly duplication. Use throughout. (visit_symbol): Correct function formal argument search. (c_tmpcounter*::visit): Add missing recursion in several functions. * testsuite/*: Add new tests for array-in construct. Add the first "transok" test. * Makefile.am: Add transok tests. * Makefile.in: Regenerated. --- staptree.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'staptree.h') diff --git a/staptree.h b/staptree.h index 203bc27e..2d2c9fce 100644 --- a/staptree.h +++ b/staptree.h @@ -124,7 +124,7 @@ struct logical_and_expr: public binary_expression }; -struct array_in: public binary_expression +struct array_in: public unary_expression { void visit (visitor* u); }; -- cgit