nil.js 448 B

123456789101112131415161718192021
  1. var RTL$ = {
  2. extend: function extend(methods){
  3. methods.__proto__ = this.prototype; // make instanceof work
  4. // to see constructor name in diagnostic
  5. var result = methods.init;
  6. methods.constructor = result.prototype.constructor;
  7. result.prototype = methods;
  8. result.extend = extend;
  9. return result;
  10. }
  11. };
  12. var m = function (){
  13. var anonymous$1$base = RTL$.extend({
  14. init: function anonymous$1$base(){
  15. }
  16. });
  17. var p = null;
  18. p = null;
  19. }();