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

Side by Side Diff: src/runtime/runtime.h

Issue 693813002: Add debug mirror support for ES6 Map/Set iterators. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: added TODO Created 6 years, 1 month 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/mirror-debugger.js ('k') | src/runtime/runtime-collections.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_RUNTIME_H_ 5 #ifndef V8_RUNTIME_RUNTIME_H_
6 #define V8_RUNTIME_RUNTIME_H_ 6 #define V8_RUNTIME_RUNTIME_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/objects.h" 9 #include "src/objects.h"
10 #include "src/zone.h" 10 #include "src/zone.h"
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 \ 303 \
304 /* Harmony sets */ \ 304 /* Harmony sets */ \
305 F(SetInitialize, 1, 1) \ 305 F(SetInitialize, 1, 1) \
306 F(SetAdd, 2, 1) \ 306 F(SetAdd, 2, 1) \
307 F(SetHas, 2, 1) \ 307 F(SetHas, 2, 1) \
308 F(SetDelete, 2, 1) \ 308 F(SetDelete, 2, 1) \
309 F(SetClear, 1, 1) \ 309 F(SetClear, 1, 1) \
310 F(SetGetSize, 1, 1) \ 310 F(SetGetSize, 1, 1) \
311 \ 311 \
312 F(SetIteratorInitialize, 3, 1) \ 312 F(SetIteratorInitialize, 3, 1) \
313 F(SetIteratorClone, 1, 1) \
313 F(SetIteratorNext, 2, 1) \ 314 F(SetIteratorNext, 2, 1) \
314 \ 315 \
315 /* Harmony maps */ \ 316 /* Harmony maps */ \
316 F(MapInitialize, 1, 1) \ 317 F(MapInitialize, 1, 1) \
317 F(MapGet, 2, 1) \ 318 F(MapGet, 2, 1) \
318 F(MapHas, 2, 1) \ 319 F(MapHas, 2, 1) \
319 F(MapDelete, 2, 1) \ 320 F(MapDelete, 2, 1) \
320 F(MapClear, 1, 1) \ 321 F(MapClear, 1, 1) \
321 F(MapSet, 3, 1) \ 322 F(MapSet, 3, 1) \
322 F(MapGetSize, 1, 1) \ 323 F(MapGetSize, 1, 1) \
323 \ 324 \
324 F(MapIteratorInitialize, 3, 1) \ 325 F(MapIteratorInitialize, 3, 1) \
326 F(MapIteratorClone, 1, 1) \
325 F(MapIteratorNext, 2, 1) \ 327 F(MapIteratorNext, 2, 1) \
326 \ 328 \
327 /* Harmony weak maps and sets */ \ 329 /* Harmony weak maps and sets */ \
328 F(WeakCollectionInitialize, 1, 1) \ 330 F(WeakCollectionInitialize, 1, 1) \
329 F(WeakCollectionGet, 2, 1) \ 331 F(WeakCollectionGet, 2, 1) \
330 F(WeakCollectionHas, 2, 1) \ 332 F(WeakCollectionHas, 2, 1) \
331 F(WeakCollectionDelete, 2, 1) \ 333 F(WeakCollectionDelete, 2, 1) \
332 F(WeakCollectionSet, 3, 1) \ 334 F(WeakCollectionSet, 3, 1) \
333 \ 335 \
334 F(GetWeakMapEntries, 1, 1) \ 336 F(GetWeakMapEntries, 1, 1) \
(...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
881 class AllocateTargetSpace : public BitField<AllocationSpace, 1, 3> {}; 883 class AllocateTargetSpace : public BitField<AllocationSpace, 1, 3> {};
882 884
883 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; 885 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {};
884 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; 886 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {};
885 class DeclareGlobalsStrictMode : public BitField<StrictMode, 2, 1> {}; 887 class DeclareGlobalsStrictMode : public BitField<StrictMode, 2, 1> {};
886 888
887 } // namespace internal 889 } // namespace internal
888 } // namespace v8 890 } // namespace v8
889 891
890 #endif // V8_RUNTIME_RUNTIME_H_ 892 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/mirror-debugger.js ('k') | src/runtime/runtime-collections.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698