Palete/Gir.vala
authorAlan Knowles <alan@roojs.com>
Tue, 3 Jun 2014 15:35:44 +0000 (23:35 +0800)
committerAlan Knowles <alan@roojs.com>
Tue, 3 Jun 2014 15:35:44 +0000 (23:35 +0800)
Palete/Gir.vala

index 8d36787..a949821 100644 (file)
@@ -35,19 +35,20 @@ namespace Palete {
         public GirObject(string nodetype, string n) {
             this.nodetype = nodetype;
             this.name = n;
-             this.params = new Gee.HashMap<string,GirObject>();
+             
             this.type = "";
             this.is_array = false;
             this.is_instance = false;
             this.is_varargs = false;
             this.implements = new GLib.List<string>();
-            this.ctors = new Gee.HashMap<string,GirObject>();
-            this.methods =new Gee.HashMap<string,GirObject>();
-            this.includes = new Gee.HashMap<string,string>();
-            this.classes= new Gee.HashMap<string,GirObject>();
-            this.props= new Gee.HashMap<string,GirObject>();
-            this.consts = new Gee.HashMap<string,GirObject>();
-            this.signals = new Gee.HashMap<string,GirObject>();
+            this.params = new Gee.HashMap<string,GirObject>();
+            this.ctors      = new Gee.HashMap<string,GirObject>();
+            this.methods    =new Gee.HashMap<string,GirObject>();
+            this.includes   = new Gee.HashMap<string,string>();
+            this.classes    = new Gee.HashMap<string,GirObject>();
+            this.props      = new Gee.HashMap<string,GirObject>();
+            this.consts     = new Gee.HashMap<string,GirObject>();
+            this.signals    = new Gee.HashMap<string,GirObject>();
         }
         public JSON.Object toJSON()
         {