Home
last modified time | relevance | path

Searched refs:anotherSetter (Results 1 – 4 of 4) sorted by relevance

/external/v8/test/mjsunit/
Daccessor-map-sharing.js37 function anotherSetter(x) { print(444); } function
140 dp(obj2, "lima", { get: getter, set: anotherSetter });
142 assertEquals(anotherSetter, gop(obj2, "lima").set);
Dobject-define-property.js1126 function anotherSetter(x) { modifyMe = x+2; } function
1145 Object.defineProperty(obj1, "romeo", { set: anotherSetter });
/external/v8/test/mjsunit/regress/
Dregress-2163.js36 function anotherSetter(x) { print(444); } function
/external/v8/test/mjsunit/harmony/
Dreflect-define-property.js1033 function anotherSetter(x) { modifyMe = x+2; } function
1053 assertTrue(Reflect.defineProperty(obj1, "romeo", { set: anotherSetter }));