]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
Resolve types in switch labels
authorJürg Billeter <j@bitron.ch>
Sun, 30 Nov 2008 22:37:39 +0000 (22:37 +0000)
committerJürg Billeter <juergbi@src.gnome.org>
Sun, 30 Nov 2008 22:37:39 +0000 (22:37 +0000)
2008-11-30  Jürg Billeter  <j@bitron.ch>

* vala/valasymbolresolver.vala:

Resolve types in switch labels

svn path=/trunk/; revision=2106

ChangeLog
vala/valasymbolresolver.vala

index 9c430b1b36033cfdd316e8d9e145bcf47e51b81b..bd5c0461b0ae33001795f333ced8a0938c632d19 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-11-30  Jürg Billeter  <j@bitron.ch>
+
+       * vala/valasymbolresolver.vala:
+
+       Resolve types in switch labels
+
 2008-11-30  Jürg Billeter  <j@bitron.ch>
 
        * vala/valaarraycreationexpression.vala:
index ff0cb9346392adfd0e4084d7249063dbc0d5e7d0..7ce0055e461e8d11b47132cadc4d344521acb2c0 100644 (file)
@@ -354,6 +354,10 @@ public class Vala.SymbolResolver : CodeVisitor {
                section.accept_children (this);
        }
 
+       public override void visit_switch_label (SwitchLabel label) {
+               label.accept_children (this);
+       }
+
        public override void visit_while_statement (WhileStatement stmt) {
                stmt.accept_children (this);
        }