Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(59)

Side by Side Diff: src/builtins.h

Issue 6515005: Strict mode delete. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 V(DIV, 1) \ 207 V(DIV, 1) \
208 V(MOD, 1) \ 208 V(MOD, 1) \
209 V(BIT_OR, 1) \ 209 V(BIT_OR, 1) \
210 V(BIT_AND, 1) \ 210 V(BIT_AND, 1) \
211 V(BIT_XOR, 1) \ 211 V(BIT_XOR, 1) \
212 V(UNARY_MINUS, 0) \ 212 V(UNARY_MINUS, 0) \
213 V(BIT_NOT, 0) \ 213 V(BIT_NOT, 0) \
214 V(SHL, 1) \ 214 V(SHL, 1) \
215 V(SAR, 1) \ 215 V(SAR, 1) \
216 V(SHR, 1) \ 216 V(SHR, 1) \
217 V(DELETE, 1) \ 217 V(DELETE, 2) \
218 V(IN, 1) \ 218 V(IN, 1) \
219 V(INSTANCE_OF, 1) \ 219 V(INSTANCE_OF, 1) \
220 V(GET_KEYS, 0) \ 220 V(GET_KEYS, 0) \
221 V(FILTER_KEY, 1) \ 221 V(FILTER_KEY, 1) \
222 V(CALL_NON_FUNCTION, 0) \ 222 V(CALL_NON_FUNCTION, 0) \
223 V(CALL_NON_FUNCTION_AS_CONSTRUCTOR, 0) \ 223 V(CALL_NON_FUNCTION_AS_CONSTRUCTOR, 0) \
224 V(TO_OBJECT, 0) \ 224 V(TO_OBJECT, 0) \
225 V(TO_NUMBER, 0) \ 225 V(TO_NUMBER, 0) \
226 V(TO_STRING, 0) \ 226 V(TO_STRING, 0) \
227 V(STRING_ADD_LEFT, 1) \ 227 V(STRING_ADD_LEFT, 1) \
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 static void Generate_ArrayConstructCode(MacroAssembler* masm); 325 static void Generate_ArrayConstructCode(MacroAssembler* masm);
326 326
327 static void Generate_StringConstructCode(MacroAssembler* masm); 327 static void Generate_StringConstructCode(MacroAssembler* masm);
328 328
329 static void Generate_OnStackReplacement(MacroAssembler* masm); 329 static void Generate_OnStackReplacement(MacroAssembler* masm);
330 }; 330 };
331 331
332 } } // namespace v8::internal 332 } } // namespace v8::internal
333 333
334 #endif // V8_BUILTINS_H_ 334 #endif // V8_BUILTINS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698