2009-01-09 Jürg Billeter <j@bitron.ch>
* vala/valaflowanalyzer.vala:
Perform flow analysis on code in creation methods, fixes bug 566000
svn path=/trunk/; revision=2303
+2009-01-09 Jürg Billeter <j@bitron.ch>
+
+ * vala/valaflowanalyzer.vala:
+
+ Perform flow analysis on code in creation methods, fixes bug 566000
+
2009-01-09 Jürg Billeter <j@bitron.ch>
* vala/valascanner.vala:
/* valaflowanalyzer.vala
*
- * Copyright (C) 2008 Jürg Billeter
+ * Copyright (C) 2008-2009 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
return versioned_var;
}
+ public override void visit_creation_method (CreationMethod m) {
+ visit_method (m);
+ }
+
public override void visit_property (Property prop) {
prop.accept_children (this);
}