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

Side by Side Diff: src/heap.h

Issue 15288011: Baseline for-of implementation (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Add non-boolean done, proxy iterators Created 7 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
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 V(compare_ic_string, "==") \ 289 V(compare_ic_string, "==") \
290 V(strict_compare_ic_string, "===") \ 290 V(strict_compare_ic_string, "===") \
291 V(infinity_string, "Infinity") \ 291 V(infinity_string, "Infinity") \
292 V(minus_infinity_string, "-Infinity") \ 292 V(minus_infinity_string, "-Infinity") \
293 V(hidden_stack_trace_string, "v8::hidden_stack_trace") \ 293 V(hidden_stack_trace_string, "v8::hidden_stack_trace") \
294 V(query_colon_string, "(?:)") \ 294 V(query_colon_string, "(?:)") \
295 V(Generator_string, "Generator") \ 295 V(Generator_string, "Generator") \
296 V(send_string, "send") \ 296 V(send_string, "send") \
297 V(throw_string, "throw") \ 297 V(throw_string, "throw") \
298 V(done_string, "done") \ 298 V(done_string, "done") \
299 V(value_string, "value") 299 V(value_string, "value") \
300 V(next_string, "next")
300 301
301 // Forward declarations. 302 // Forward declarations.
302 class GCTracer; 303 class GCTracer;
303 class HeapStats; 304 class HeapStats;
304 class Isolate; 305 class Isolate;
305 class WeakObjectRetainer; 306 class WeakObjectRetainer;
306 307
307 308
308 typedef String* (*ExternalStringTableUpdaterCallback)(Heap* heap, 309 typedef String* (*ExternalStringTableUpdaterCallback)(Heap* heap,
309 Object** pointer); 310 Object** pointer);
(...skipping 2733 matching lines...) Expand 10 before | Expand all | Expand 10 after
3043 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 3044 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
3044 3045
3045 private: 3046 private:
3046 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 3047 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
3047 }; 3048 };
3048 #endif // DEBUG 3049 #endif // DEBUG
3049 3050
3050 } } // namespace v8::internal 3051 } } // namespace v8::internal
3051 3052
3052 #endif // V8_HEAP_H_ 3053 #endif // V8_HEAP_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698