Home | History | Annotate | Download | only in Function

Lines Matching refs:obj

27 * on the second call to obj.toString() or print(obj) below -
39 function F(obj)
41 if(!obj)
42 obj = {};
43 obj.toString();
45 obj.toString();
49 function G(obj)
51 if(!obj)
52 obj = {};
53 print(obj);
55 print(obj);