Prototype Filter

Classes

Classes are currently parsed from the following method invocation:

namespace.classname = Class.create();

where namespace may be compound.

Methods

Methods are currently parsed from a object literal of named method declarations attached to the class's prototype, as in the following example

namespace.classname.prototype = {

    initialize: function(id,options) {
        // do something
    }

    isUseful: function() {
        return false;
    }

    // more method declarations...  
}