Lines Matching refs:shouldThrow
35 shouldThrow("(1234.567).toString(0)");
37 shouldThrow("(1234.567).toString(null)");
38 shouldThrow("(1234.567).toString(false)");
39 shouldThrow("(1234.567).toString('foo')");
40 shouldThrow("(1234.567).toString(nan)"); // nan is treated like 0
42 shouldThrow("(1234.567).toString(1)");
43 shouldThrow("(1234.567).toString(true)");
44 shouldThrow("(1234.567).toString('1')");
84 shouldThrow("(1234.567).toString(37)");
85 shouldThrow("(1234.567).toString(-1)");
86 shouldThrow("(1234.567).toString(posInf)");
87 shouldThrow("(1234.567).toString(negInf)");