tools/build_gtk_tree.js
[app.Builder.js] / tools / build_gtk_tree.js
index 292e56d..f9e0a58 100644 (file)
@@ -8,3 +8,24 @@
 // a) what the inherited types are
 // b) what methods are available for each type, that include a reference to another type..
 
+// 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];
+});
+