mirror of https://github.com/tc39/test262.git
Merge pull request #19 from JaimeLynSchatz/JaimeLynSchatz/fixBugz1533
change test 15.3.5.4_2-89 to call bound function before returning (Fixes bugzilla 1533)
This commit is contained in:
commit
916a08bb9a
|
@ -11,7 +11,7 @@
|
||||||
|
|
||||||
|
|
||||||
function f() { return gNonStrict();};
|
function f() { return gNonStrict();};
|
||||||
(function () {"use strict"; return f.bind();})();
|
(function () {"use strict"; return f.bind()();})();
|
||||||
|
|
||||||
|
|
||||||
function gNonStrict() {
|
function gNonStrict() {
|
||||||
|
|
Loading…
Reference in New Issue