Home | History | Annotate | Download | only in resources

Lines Matching refs:Foo

13     var objectWithSideEffectGetter = {get b() {this.foo=1;}};
14 var objectWithSideEffectGetterAndProto = {__proto__:{foo:"bar"}, get b() {this.foo=1;}};
16 arrayWithSideEffectGetter.__defineGetter__("b", function(){this.foo=1;});
18 arrayWithSideEffectGetterAndProto.__defineGetter__("b", function(){this.foo=1;});
19 arrayWithSideEffectGetterAndProto.__proto__ = {foo:"bar"};
114 return jsonObject.stringify({get Foo() { return "bar"; }});
117 return jsonObject.stringify({get Foo() { this.foo="wibble"; return "bar"; }});
121 jsonObject.stringify({get Foo() { count++; return "bar"; }});
126 return jsonObject.stringify({get Foo() { count++; delete this.bar; return "bar"; }, bar: "wibble"});
356 return jsonObject.stringify({a:"1", get b() { this.a="foo"; return "getter"; }, c:"3"});
359 return jsonObject.stringify({a:"1", get b() { this.c="foo"; return "getter"; }, c:"3"});
417 "123":createArray(15, "foo"),