# HG changeset patch # User cin # Date 1497907995 -10800 # Node ID 9663631cbdb9a46677b0a139f56ceb2c31fd0bfc # Parent 3d124d0b9078837e9c91456bcf3aa742b6e679f1 fix implab/declare/override diff -r 3d124d0b9078 -r 9663631cbdb9 src/implab/declare/override.js --- a/src/implab/declare/override.js Fri Jun 16 02:14:25 2017 +0300 +++ b/src/implab/declare/override.js Tue Jun 20 00:33:15 2017 +0300 @@ -10,8 +10,6 @@ var inherited = (this.getInherited && this.getInherited(proxy.nom, { callee: proxy })) || function () {}; - - inherited.arguments = arguments; return method.apply(me, [function () { return inherited.apply(me, arguments); @@ -33,8 +31,8 @@ var inherited = (this.getInherited && this.getInherited(proxy.nom, { callee: proxy })) || function () {}; - - + + method.apply(me, arguments); return inherited.apply(me, arguments); }; @@ -54,7 +52,7 @@ var inherited = (this.getInherited && this.getInherited(proxy.nom, { callee: proxy })) || function () {}; - + inherited.apply(me, arguments); return method.apply(me, arguments);