mirror of https://github.com/tc39/test262.git
change test 15.3.5.4_2-89 to call bound function before returning for Bugzilla issue 1533
This commit is contained in:
parent
9b669da66c
commit
6b47f8c585
|
@ -11,7 +11,7 @@
|
|||
|
||||
|
||||
function f() { return gNonStrict();};
|
||||
(function () {"use strict"; return f.bind();})();
|
||||
(function () {"use strict"; return f.bind()();})();
|
||||
|
||||
|
||||
function gNonStrict() {
|
||||
|
|
Loading…
Reference in New Issue