Home | History | Annotate | Download | only in regress

Lines Matching refs:function

30 function ToDictionaryMode(x) {
36 // The initial bug report was about calling a know function...
38 Object.defineProperty(A, "foo", { value: function() { assertUnreachable(); }});
41 Object.defineProperty(B, "foo", { value: function() { return 111; }});
45 function bar(x) { return x.foo(); }
55 Object.defineProperty(A, "baz", { get: function() { assertUnreachable(); }});
58 Object.defineProperty(B, "baz", { get: function() { return 111; }});
62 function boo(x) { return x.baz; }
72 Object.defineProperty(A, "huh", { set: function(x) { assertUnreachable(); }});
76 Object.defineProperty(B, "huh", { set: function(x) { setterValue = x; }});
80 function fuu(x) {