Home | History | Annotate | Download | only in kde

Lines Matching refs:sub

34 var sub = new MyClass();
35 shouldBe("sub.x","1");
36 shouldBe("sub.y","2");
37 shouldBe("sub.hasOwnProperty('x')","false");
38 shouldBe("sub.hasOwnProperty('y')","true");
39 sub.x = 6;
40 shouldBe("sub.x","6");
41 shouldBe("sub.hasOwnProperty('x')","true");
42 delete sub.y;
43 shouldBe("sub.y","undefined");
44 shouldBe("sub.hasOwnProperty('y')","false");