archives

« Bugzilla Issues Index

#1533 — 15.3.5.4_2-89gs just returns bound function instead of calling it


Change: (function () {"use strict"; return f.bind();})();

to: (function () {"use strict"; return f.bind()();})();

Note the additional call expression in `f.bind()()`.