1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/jit-test/tests/arrow-functions/this-5.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,12 @@ 1.4 +// Arrow functions can have primitive |this| values. 1.5 + 1.6 +Number.prototype.foo = function() { 1.7 + "use strict"; 1.8 + return () => this; 1.9 +} 1.10 + 1.11 +for (var i=0; i<5; i++) { 1.12 + var n = i.foo()(); 1.13 + assertEq(typeof n, "number"); 1.14 + assertEq(n, i); 1.15 +}