Lines Matching refs:function
30 // Test that we can inline a function that calls another function.
31 function TestInlineX(o) {
45 o2.size = function() { return 42; }
46 o2.g = function() { return this.size(); };
54 function TestInlineX2(o) {
68 obj.foo = function() { return 42; }
71 o3.h = function() { return this.v.foo(); };
79 function TestInlineFG(o) {
93 obj.g = function() { return 42; }
96 o3.f = function() { return this.v; }
97 o3.h = function() { return this.f().g(); };