Home | History | Annotate | Download | only in compiler

Lines Matching defs:o3

69 var o3 = {};
70 o3.v = obj;
71 o3.h = function() { return this.v.foo(); };
72 for (var i = 0; i < 5; i++) TestInlineX2(o3);
74 TestInlineX2(o3);
75 TestInlineX2({h: o3.h, v:obj});
94 var o3 = {};
95 o3.v = obj;
96 o3.f = function() { return this.v; }
97 o3.h = function() { return this.f().g(); };
98 for (var i = 0; i < 5; i++) TestInlineFG(o3);
100 TestInlineFG(o3);
101 TestInlineFG({h: o3.h, f: o3.f, v:obj});