X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=JSDOC%2FIntrospect%2FNameSpace.js;h=9a0634310a87f3c686d791727b8f0d1777d49bd1;hp=49216e11e6c9a9bd0586b521443fbaee6019cd56;hb=6ef7a210af03eacaa6ed8b8248f4fbfd97402893;hpb=3fc492a60d3022d408e93c3535a5b6d60c50a0b9 diff --git a/JSDOC/Introspect/NameSpace.js b/JSDOC/Introspect/NameSpace.js index 49216e1..9a06343 100644 --- a/JSDOC/Introspect/NameSpace.js +++ b/JSDOC/Introspect/NameSpace.js @@ -111,7 +111,7 @@ NameSpace = { ret.interfaces.push(GI.base_info_get_name(info)); continue; case GI.IInfoType.FUNCTION: - new Introspect.Method(info, ret, 'functions', []); + new imports.Method.Method(info, ret, 'functions', []); continue; case GI.IInfoType.CALLBACK: @@ -133,7 +133,7 @@ NameSpace = { ret.unions.push(GI.base_info_get_name(info)); continue; case GI.IInfoType.CONSTANT: - new Introspect.Constant(info, ret, 'values', []); + new imports.Constant.Constant(info, ret, 'values', []); continue; @@ -291,7 +291,7 @@ NameSpace = { registry : { }, factory : function(type, ns, name) { if (typeof (this.registry[ns +'.' + name]) == 'undefined') { - this.registry[ns +'.' + name] = new Introspect[type](ns,name); + this.registry[ns +'.' + name] = new imports[type][type](ns,name); this.registry[ns +'.' + name].load(); }