Home | History | Annotate | Download | only in regress

Lines Matching refs:delete

28 // Regression test for Chromium issue 70066.  Delete should work properly
34 // Delete on a slot from a function's own context.
38 with ({}) { status = delete value; }
46 // Delete on a slot from an outer context.
49 with ({}) { return delete value; }
60 // Delete on a parameter.
63 with ({}) { status = delete value; }
71 // Delete on a parameter found in an outer context.
74 with ({}) { return delete value; }
84 // Delete on a parameter, arguments object should be unaffected.
87 with ({}) { status = delete value; }
96 with ({}) { return delete value; }
106 // Delete on a property found on 'with' object.
108 with (object) { return delete value; }
117 // Delete on a global property.
119 with ({}) { return delete x; }
126 // Delete on a property that is not found anywhere.
128 with ({}) { return delete x; }
135 // Delete on a DONT_DELETE property of the global object.
138 with ({}) { return delete y; }