From d00b9d70cfffe71e9648da459e66b6b1cfc8bfd4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=BCrg=20Billeter?= Date: Sat, 3 Jul 2010 11:48:20 +0200 Subject: [PATCH] dova: Fix symbol resolving in list, set, and map literals and tuples --- vala/valasymbolresolver.vala | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/vala/valasymbolresolver.vala b/vala/valasymbolresolver.vala index eecc18ff1..abbac3b14 100644 --- a/vala/valasymbolresolver.vala +++ b/vala/valasymbolresolver.vala @@ -474,6 +474,22 @@ public class Vala.SymbolResolver : CodeVisitor { tmpl.accept_children (this); } + public override void visit_list_literal (ListLiteral lit) { + lit.accept_children (this); + } + + public override void visit_set_literal (SetLiteral lit) { + lit.accept_children (this); + } + + public override void visit_map_literal (MapLiteral lit) { + lit.accept_children (this); + } + + public override void visit_tuple (Tuple tuple) { + tuple.accept_children (this); + } + public override void visit_member_access (MemberAccess expr) { expr.accept_children (this); } -- 2.47.3