(fn, me)
| 1148 | (function() { |
| 1149 | var ZeroFrame, |
| 1150 | bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; }, |
| 1151 | extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }, |
| 1152 | hasProp = {}.hasOwnProperty; |
| 1153 |
no outgoing calls
no test coverage detected