Home
last modified time | relevance | path

Searched refs:assertDoesNotThrow (Results 1 – 17 of 17) sorted by relevance

/external/v8/test/mjsunit/
Dinvalid-lhs.js35 assertDoesNotThrow("if (false) eval('var x') = 12");
44 assertDoesNotThrow("if (false) ++(eval('12'))");
45 assertDoesNotThrow("if (false) (eval('12'))++");
50 assertDoesNotThrow("if (false) for (eval('var x') in [1]) print(12);");
55 assertDoesNotThrow("if (false) for (eval('var x') = 1;;) print(12);");
59 assertDoesNotThrow("function f() { this = 12; }");
Dgetter-in-prototype.js38 assertDoesNotThrow("o.x = 42");
39 assertDoesNotThrow("o[0] = 42");
50 assertDoesNotThrow(f);
64 assertDoesNotThrow(g);
77 assertDoesNotThrow(g2);
Ddate.js159 assertDoesNotThrow("d.setDate(-0)");
160 assertDoesNotThrow("new Date(-0, -0, -0, -0, -0, -0, -0)");
161 assertDoesNotThrow("new Date(0x40000000, 0x40000000, 0x40000000," +
163 assertDoesNotThrow("new Date(-0x40000001, -0x40000001, -0x40000001," +
Dmjsunit.js93 var assertDoesNotThrow; variable
335 assertDoesNotThrow = function assertDoesNotThrow(code, name_opt) { function
Ddelay-syntax-error.js33 assertDoesNotThrow("if (false) return;");
Dwith-function-expression.js31 assertDoesNotThrow(source);
Dget-prototype-of.js41 assertDoesNotThrow(Object.getPrototypeOf(x));
Dindexed-accessors.js88 assertDoesNotThrow('q[0] = 7');
Dstrict-mode.js29 assertDoesNotThrow(code);
32 assertDoesNotThrow("\
54 assertDoesNotThrow(function() {
/external/v8/test/mjsunit/harmony/
Dcollections.js33 assertDoesNotThrow(function () { m.add(new Object) });
34 assertDoesNotThrow(function () { m.has(new Object) });
35 assertDoesNotThrow(function () { m.delete(new Object) });
42 assertDoesNotThrow(function () { m.get(new Object) });
43 assertDoesNotThrow(function () { m.set(new Object) });
44 assertDoesNotThrow(function () { m.has(new Object) });
45 assertDoesNotThrow(function () { m.delete(new Object) });
Dblock-let-declaration.js63 assertDoesNotThrow("(function(){ 'use strict'; " + str + "})()");
Dproxies.js2089 assertDoesNotThrow(function(){ Function.prototype.toString.call(f) })
/external/v8/test/mjsunit/regress/
Dregress-1369.js30 assertDoesNotThrow('gc.call(1)');
31 assertDoesNotThrow('gc.call("asdf")');
Dregress-687.js32 assertDoesNotThrow(
52 assertDoesNotThrow(create.value = 4);
Dregress-1355.js37 assertDoesNotThrow("foo.bar = 20");
Dregress-318.js35 assertDoesNotThrow('test(0)');
Dregress-3218530.js36 assertDoesNotThrow(assertEquals(m[p](Math.round(bignumber/864E5)/7)+1, 52));