summaryrefslogtreecommitdiff
path: root/vala/valaswitchsection.vala
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2010-02-10 15:38:02 +0100
committerJürg Billeter <j@bitron.ch>2010-02-10 15:38:02 +0100
commite5a2f991e7e5799cf70e8edc12fd2c25c7f6625b (patch)
tree9267aaf8881627d3f8c0f6635cab7f2c3f5f1961 /vala/valaswitchsection.vala
parent0917027522a311cc1868cb028bc5ac7fd2b8b2c5 (diff)
downloadvala-e5a2f991e7e5799cf70e8edc12fd2c25c7f6625b.tar.gz
Fix error handling checks in switch statements
Diffstat (limited to 'vala/valaswitchsection.vala')
-rw-r--r--vala/valaswitchsection.vala7
1 files changed, 6 insertions, 1 deletions
diff --git a/vala/valaswitchsection.vala b/vala/valaswitchsection.vala
index 7b7cc9544..334f6a7e8 100644
--- a/vala/valaswitchsection.vala
+++ b/vala/valaswitchsection.vala
@@ -1,6 +1,6 @@
/* valaswitchsection.vala
*
- * Copyright (C) 2006-2009 Jürg Billeter
+ * Copyright (C) 2006-2010 Jürg Billeter
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -107,6 +107,11 @@ public class Vala.SwitchSection : Block {
local.active = false;
}
+ // use get_statements () instead of statement_list to not miss errors within StatementList objects
+ foreach (Statement stmt in get_statements ()) {
+ add_error_types (stmt.get_error_types ());
+ }
+
analyzer.current_symbol = old_symbol;
analyzer.insert_block = old_insert_block;