Introspect/Method.js
authorAlan Knowles <alan@akkbhome.com>
Tue, 6 Jul 2010 13:39:10 +0000 (21:39 +0800)
committerAlan Knowles <alan@akkbhome.com>
Tue, 6 Jul 2010 13:39:10 +0000 (21:39 +0800)
Introspect/Method.js [deleted file]

diff --git a/Introspect/Method.js b/Introspect/Method.js
deleted file mode 100644 (file)
index 2c44879..0000000
+++ /dev/null
@@ -1,150 +0,0 @@
-//<script type="text/javascript">
-
-GI      = imports.gi.GIRepository;
-
-
-XObject     = imports.XObject.XObject;
-console     = imports.console.console;
-NameSpace   = imports.NameSpace.NameSpace;
-
-Basic        = imports.Basic.Basic;
-
-  
-/**
- * Methods, functions or consturctors
- */
-
-
-
-
-Method = XObject.define(
-    function(m, memberOf, saveto, keylist) {
-        this.propertyType  = 'Method';
-        
-        var flags = GI.function_info_get_flags (m);
-        var n = GI.base_info_get_name(m);
-        var n_original = n + '';
-        // posibly add: sink, 
-        if (n.match(/_(ref|unref)$/) || n.match(/^(ref|unref|weakref|weakunref)$/)) {
-            return false; // skip these!
-        }
-        
-        if (n == 'new') {
-            n = 'c_new';
-        }
-
-        
-        var retval = [ { 
-                name : 0, 
-                type :  this.typeToName(GI.callable_info_get_return_type(m)),
-                desc : NameSpace.doc(memberOf.alias + '.' + n_original + '.return-value')
-        } ];
-        
-        
-        
-        var args = this.argsToArrays(m, retval);
-        
-        
-        if ((n == 'c_new') && !args.length && memberOf.constructors.length) {
-            
-            memberOf.constructors[0].doc = NameSpace.doc(memberOf.alias + '.' + n_original);
-            
-            return false; // skip.
-        }
-        
-
-        
-        
-        
-        //console.log(GI.base_info_get_name(m));
-       // console.dump(GI.base_info_get_attribute(m, 'doc') );
-       
-         // this is a bit messy, as we probably loose the doc's on new..
-       
-        
-        XObject.extend(this, {
-            name : n,
-            params: args,
-            returns :  retval,
-            isConstructor : flags & GI.IFunctionInfoFlags.IS_CONSTRUCTOR,
-            isStatic : !(flags & GI.IFunctionInfoFlags.IS_METHOD),
-            memberOf : memberOf.alias,
-            exceptions : [],
-            desc : NameSpace.doc(memberOf.alias + '.' + n_original)
-        });
-        // add descriptions to the arguments..
-        this.params.map(function(p) {
-            
-            
-            p.desc = NameSpace.doc(memberOf.alias + '.' + n_original + '.' + p.name);
-            //Seed.print(memberOf.alias + '.' + n_original + '.' + p.name + ':' +  p.desc);
-            
-        });
-        
-        
-            // collect references...
-        var addedto = [ memberOf.alias ]; // do not add to self...
-       
-         for(var i =0; i < args.length;i++) {
-            var ty = args[i].type;
-            if (typeof(ty) != 'string' || ty.indexOf('.') < 0) {
-                continue;
-            }
-            if (addedto.indexOf(ty) > -1) {
-                continue;
-            }
-            
-            
-            
-            NameSpace.references[ty] = NameSpace.references[ty] || [];
-            NameSpace.references[ty].push(this);
-            addedto.push(ty);
-        }
-        
-        
-         // decide what to add to...
-         
-        if (this.isConstructor) {
-            
-            if (this.name.match(/^new_/)) {
-                this.name = this.name.substring(4);
-            }
-            
-            
-            memberOf.constructors.push(this);
-            return;
-        }
-        // return values  = only applicable to non-constructors..
-        for(var i =0; i < retval.length;i++) {
-            var ty = retval[i].type;
-            if (typeof(ty) != 'string' || ty.indexOf('.') < 0) {
-                continue;
-            }
-            if (addedto.indexOf(ty) > -1) {
-                continue;
-            }
-            
-            
-            
-            NameSpace.references[ty] = NameSpace.references[ty] || [];
-            NameSpace.references[ty].push(this);
-            addedto.push(ty);
-        }
-        
-        
-        if (this.isStatic) {
-            
-            memberOf.functions.push(this);
-            return;
-        }
-            
-            
-        memberOf.methods.push(this);
-        keylist.push(this.name);
-            
-        
-            
-    },
-    Basic, 
-    { }
-);
\ No newline at end of file