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

Side by Side Diff: src/runtime.h

Issue 259883002: ES6: Add support for Map and Set Iterator (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Code review changes Created 6 years, 6 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
« no previous file with comments | « src/objects-inl.h ('k') | src/runtime.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_RUNTIME_H_ 5 #ifndef V8_RUNTIME_H_
6 #define V8_RUNTIME_H_ 6 #define V8_RUNTIME_H_
7 7
8 #include "allocation.h" 8 #include "allocation.h"
9 #include "zone.h" 9 #include "zone.h"
10 10
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 F(GetConstructTrap, 1, 1) \ 265 F(GetConstructTrap, 1, 1) \
266 F(Fix, 1, 1) \ 266 F(Fix, 1, 1) \
267 \ 267 \
268 /* Harmony sets */ \ 268 /* Harmony sets */ \
269 F(SetInitialize, 1, 1) \ 269 F(SetInitialize, 1, 1) \
270 F(SetAdd, 2, 1) \ 270 F(SetAdd, 2, 1) \
271 F(SetHas, 2, 1) \ 271 F(SetHas, 2, 1) \
272 F(SetDelete, 2, 1) \ 272 F(SetDelete, 2, 1) \
273 F(SetClear, 1, 1) \ 273 F(SetClear, 1, 1) \
274 F(SetGetSize, 1, 1) \ 274 F(SetGetSize, 1, 1) \
275 F(SetCreateIterator, 2, 1) \
276 \ 275 \
276 F(SetIteratorInitialize, 3, 1) \
277 F(SetIteratorNext, 1, 1) \ 277 F(SetIteratorNext, 1, 1) \
278 \ 278 \
279 /* Harmony maps */ \ 279 /* Harmony maps */ \
280 F(MapInitialize, 1, 1) \ 280 F(MapInitialize, 1, 1) \
281 F(MapGet, 2, 1) \ 281 F(MapGet, 2, 1) \
282 F(MapHas, 2, 1) \ 282 F(MapHas, 2, 1) \
283 F(MapDelete, 2, 1) \ 283 F(MapDelete, 2, 1) \
284 F(MapClear, 1, 1) \ 284 F(MapClear, 1, 1) \
285 F(MapSet, 3, 1) \ 285 F(MapSet, 3, 1) \
286 F(MapGetSize, 1, 1) \ 286 F(MapGetSize, 1, 1) \
287 F(MapCreateIterator, 2, 1) \
288 \ 287 \
288 F(MapIteratorInitialize, 3, 1) \
289 F(MapIteratorNext, 1, 1) \ 289 F(MapIteratorNext, 1, 1) \
290 \ 290 \
291 /* Harmony weak maps and sets */ \ 291 /* Harmony weak maps and sets */ \
292 F(WeakCollectionInitialize, 1, 1) \ 292 F(WeakCollectionInitialize, 1, 1) \
293 F(WeakCollectionGet, 2, 1) \ 293 F(WeakCollectionGet, 2, 1) \
294 F(WeakCollectionHas, 2, 1) \ 294 F(WeakCollectionHas, 2, 1) \
295 F(WeakCollectionDelete, 2, 1) \ 295 F(WeakCollectionDelete, 2, 1) \
296 F(WeakCollectionSet, 3, 1) \ 296 F(WeakCollectionSet, 3, 1) \
297 \ 297 \
298 /* Harmony events */ \ 298 /* Harmony events */ \
(...skipping 590 matching lines...) Expand 10 before | Expand all | Expand 10 after
889 class AllocateDoubleAlignFlag: public BitField<bool, 0, 1> {}; 889 class AllocateDoubleAlignFlag: public BitField<bool, 0, 1> {};
890 class AllocateTargetSpace: public BitField<AllocationSpace, 1, 3> {}; 890 class AllocateTargetSpace: public BitField<AllocationSpace, 1, 3> {};
891 891
892 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; 892 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {};
893 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; 893 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {};
894 class DeclareGlobalsStrictMode: public BitField<StrictMode, 2, 1> {}; 894 class DeclareGlobalsStrictMode: public BitField<StrictMode, 2, 1> {};
895 895
896 } } // namespace v8::internal 896 } } // namespace v8::internal
897 897
898 #endif // V8_RUNTIME_H_ 898 #endif // V8_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/objects-inl.h ('k') | src/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698