js/src/jit-test/tests/basic/bug934997.js

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

michael@0 1 function test1() {
michael@0 2 var BUGNUMBER = '';
michael@0 3 var summary = '';
michael@0 4 var actual = '';
michael@0 5 test(BUGNUMBER);
michael@0 6 function test() {
michael@0 7 try {
michael@0 8 (function () { eval("'foo'.b()", arguments) })();
michael@0 9 } catch(ex) {
michael@0 10 actual = ex + '';
michael@0 11 }
michael@0 12 }
michael@0 13 assertEq(actual, 'TypeError: "foo".b is not a function');
michael@0 14 }
michael@0 15 test1();
michael@0 16
michael@0 17 function test2() {
michael@0 18 var BUGNUMBER = '';
michael@0 19 var summary = '';
michael@0 20 function g() {
michael@0 21 'use strict';
michael@0 22 try {
michael@0 23 eval('function foo() { var a, arguments, b;}');
michael@0 24 } catch (x) {
michael@0 25 return (x instanceof SyntaxError);
michael@0 26 }
michael@0 27 };
michael@0 28 assertEq(g(), true);
michael@0 29 }
michael@0 30 test2();

mercurial