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

Side by Side Diff: src/heap.h

Issue 332663004: For-of calls [Symbol.iterator]() on RHS to get iterator (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: 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/generator.js ('k') | src/ia32/full-codegen-ia32.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_HEAP_H_ 5 #ifndef V8_HEAP_H_
6 #define V8_HEAP_H_ 6 #define V8_HEAP_H_
7 7
8 #include <cmath> 8 #include <cmath>
9 9
10 #include "src/allocation.h" 10 #include "src/allocation.h"
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 V(Arguments_string, "Arguments") \ 270 V(Arguments_string, "Arguments") \
271 V(call_string, "call") \ 271 V(call_string, "call") \
272 V(apply_string, "apply") \ 272 V(apply_string, "apply") \
273 V(caller_string, "caller") \ 273 V(caller_string, "caller") \
274 V(boolean_string, "boolean") \ 274 V(boolean_string, "boolean") \
275 V(Boolean_string, "Boolean") \ 275 V(Boolean_string, "Boolean") \
276 V(callee_string, "callee") \ 276 V(callee_string, "callee") \
277 V(constructor_string, "constructor") \ 277 V(constructor_string, "constructor") \
278 V(dot_result_string, ".result") \ 278 V(dot_result_string, ".result") \
279 V(dot_for_string, ".for.") \ 279 V(dot_for_string, ".for.") \
280 V(dot_iterable_string, ".iterable") \
280 V(dot_iterator_string, ".iterator") \ 281 V(dot_iterator_string, ".iterator") \
281 V(dot_generator_object_string, ".generator_object") \ 282 V(dot_generator_object_string, ".generator_object") \
282 V(eval_string, "eval") \ 283 V(eval_string, "eval") \
283 V(empty_string, "") \ 284 V(empty_string, "") \
284 V(function_string, "function") \ 285 V(function_string, "function") \
285 V(length_string, "length") \ 286 V(length_string, "length") \
286 V(module_string, "module") \ 287 V(module_string, "module") \
287 V(name_string, "name") \ 288 V(name_string, "name") \
288 V(native_string, "native") \ 289 V(native_string, "native") \
289 V(null_string, "null") \ 290 V(null_string, "null") \
(...skipping 2490 matching lines...) Expand 10 before | Expand all | Expand 10 after
2780 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2781 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2781 2782
2782 private: 2783 private:
2783 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2784 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2784 }; 2785 };
2785 #endif // DEBUG 2786 #endif // DEBUG
2786 2787
2787 } } // namespace v8::internal 2788 } } // namespace v8::internal
2788 2789
2789 #endif // V8_HEAP_H_ 2790 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « src/generator.js ('k') | src/ia32/full-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698