Lines Matching full:o
88 function g(o, v) { argument
91 res = o[1];
100 let o = { variable
102 o[102500] = 1;
103 o["test"] = "test";
104 print(g(o, 1));
105 Object.defineProperty(o, "1", { value: 2 });
107 print(g(o, 2));
112 let o = { variable
114 o[102500] = 1;
115 o["test"] = "test";
116 print(g(o, 1));
117 Object.defineProperty(o, "1", { value: 2 });
119 print(g(o, 2));