Fix #8028 - language server performance, fix warnings and critical errors
[roobuilder] / src / Palete / GirObject.vala
index cb08c8f..f9589f6 100644 (file)
@@ -36,6 +36,7 @@ namespace Palete {
                public bool is_writable = true;
                public bool is_readable = true;
                public bool is_abstract = false;
+               public bool is_sealed = false;
                public  string parent;
                public  string value;
                // to be filled in...
@@ -350,7 +351,7 @@ namespace Palete {
 
  
                public GirObject? fetchByFqn(string fqn) {
-                       GLib.debug("Searching (%s)%s for %s\n", this.nodetype, this.name, fqn);
+                       //                      GLib.debug("Searching (%s)%s for %s", this.nodetype, this.name, fqn);
                        var bits = fqn.split(".");
                        
                        var ret = this.classes.get(bits[0]);