Home | History | Annotate | Download | only in webkit

Lines Matching full:shouldbe

37 shouldBe("forIn1()", "['x', 'y']");
48 shouldBe("forIn2()", "['x']");
59 shouldBe("forIn3({ __proto__: { y1: 2 } })", "['x', 'y1']");
63 shouldBe("forIn3({ y2 : 2, __proto__: null })", "['x', 'y2']");
67 shouldBe("forIn3({ __proto__: { __proto__: { y3 : 2 } } })", "['x', 'y3']");
77 shouldBe("forIn4(objectWithArrayAsProto)", "[]");
79 shouldBe("forIn4(objectWithArrayAsProto)", "['0']");
86 shouldBe("forIn5({get foo() { return 'called getter'} })", "['foo', 'called getter']");
87 shouldBe("forIn5({set foo(v) { } })", "['foo', undefined]");
88 shouldBe("forIn5({get foo() { return 'called getter'}, set foo(v) { }})", "['foo', 'called getter']");