Lines Matching full:x123
30 shouldBe("parseInt('0x123')", '0x123');
31 shouldBe("parseInt('0x123x4')", '0x123');
32 shouldBe("parseInt('-0x123x4')", '-0x123');
42 shouldBe("parseInt('123', 16)", '0x123');
44 shouldBe("parseInt('0x123', undefined)", '0x123');
45 shouldBe("parseInt('0x123', null)", '0x123');
46 shouldBe("parseInt('0x123', 0)", '0x123');
47 shouldBe("parseInt('0x123', 10)", '0');
48 shouldBe("parseInt('0x123', 16)", '0x123');