2009-01-07 Jürg Billeter <j@bitron.ch>
* vala/valasymbolresolver.vala:
Fix critical when using invalid `using' directive
svn path=/trunk/; revision=2289
+2009-01-07 Jürg Billeter <j@bitron.ch>
+
+ * vala/valasymbolresolver.vala:
+
+ Fix critical when using invalid `using' directive
+
2009-01-07 Jürg Billeter <j@bitron.ch>
* gobject/valagerrormodule.vala:
/* valasymbolresolver.vala
*
- * Copyright (C) 2006-2009 Jürg Billeter, Raffaele Sandrini
+ * Copyright (C) 2006-2009 Jürg Billeter
+ * Copyright (C) 2006-2008 Raffaele Sandrini
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
}
if (sym == null) {
foreach (UsingDirective ns in current_using_directives) {
- if (ns.error) {
+ if (ns.error || ns.namespace_symbol is UnresolvedSymbol) {
continue;
}