tools/build_gtk_tree.js
[app.Builder.js] / tools / build_gtk_tree.js
index bb374a2..f9e0a58 100644 (file)
 
 // let's start with types.. 
 
+imports.searchPath.push('../../gnome.introspection-doc-generator');
+
+XObject     = imports.XObject.XObject;
+File        = imports.File.File; 
+// Introspecion specific..
+NameSpace   = imports.Introspect.NameSpace.NameSpace; 
+Link        = imports.Introspect.Link.Link; 
+
+var ns_list = NameSpace.namespaces();
+ns_list = ns_list.sort();
+// let's try and load them, so we find out early what will fail.
+print("loading library to make sure it works.");
+ns_list.forEach(function(ns_name) 
+{   
+    var  core = imports.gi[ns_name];
+});