Searched refs:strict_get_y (Results 1 - 1 of 1) sorted by relevance

/external/v8/test/mjsunit/
H A Dstrict-mode-implicit-receiver.js33 function strict_get_y() { "use strict"; return this.y; } function
36 for (var i = 0; i < 10; i++) assertEquals(3, strict_get_y.call(this));
38 for (var i = 0; i < 10; i++) assertEquals(42, strict_get_y.call(o));
43 try { strict_get_y(); } catch(e) { exception = true; }
51 function strict_get_y() { "use strict"; return this.y; }
56 strict_get_y();
71 throw strict_get_y;
85 assertEquals(3, strict_get_y());
86 assertEquals(3, strict_get_y(32));
90 o.f = strict_get_y;
[all...]

Completed in 140 milliseconds