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

Side by Side Diff: src/heap.h

Issue 16136011: Generator object "next" method takes optional send value (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: rebased onto master 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
« no previous file with comments | « src/generator.js ('k') | src/hydrogen.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 // 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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 V(use_strict_string, "use strict") \ 286 V(use_strict_string, "use strict") \
287 V(dot_string, ".") \ 287 V(dot_string, ".") \
288 V(anonymous_function_string, "(anonymous function)") \ 288 V(anonymous_function_string, "(anonymous function)") \
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") \
297 V(throw_string, "throw") \ 296 V(throw_string, "throw") \
298 V(done_string, "done") \ 297 V(done_string, "done") \
299 V(value_string, "value") \ 298 V(value_string, "value") \
300 V(next_string, "next") 299 V(next_string, "next")
301 300
302 // Forward declarations. 301 // Forward declarations.
303 class GCTracer; 302 class GCTracer;
304 class HeapStats; 303 class HeapStats;
305 class Isolate; 304 class Isolate;
306 class WeakObjectRetainer; 305 class WeakObjectRetainer;
(...skipping 2752 matching lines...) Expand 10 before | Expand all | Expand 10 after
3059 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 3058 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
3060 3059
3061 private: 3060 private:
3062 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 3061 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
3063 }; 3062 };
3064 #endif // DEBUG 3063 #endif // DEBUG
3065 3064
3066 } } // namespace v8::internal 3065 } } // namespace v8::internal
3067 3066
3068 #endif // V8_HEAP_H_ 3067 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « src/generator.js ('k') | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698