Home | History | Annotate | Download | only in mjsunit

Lines Matching refs:store

28 // Test dictionary store ICs.
31 function store(obj) { obj.x = 42; }
37 // Make the store ic in the 'store' function go into dictionary store
40 store(o);
48 // Attempt to store using the store ic in the 'store' function.
49 store(o);
51 // Check that the store did not change the value.
56 store(1);
59 store(o);
63 store(o);