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

Unified Diff: src/isolate.h

Issue 103243005: Captured arguments object materialization (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Formatting fix Created 6 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: src/isolate.h
diff --git a/src/isolate.h b/src/isolate.h
index 5c3bbb34726b33dffc7097d400bd8875840a5237..1c24c335004e734339e645258b291839bced0012 100644
--- a/src/isolate.h
+++ b/src/isolate.h
@@ -62,6 +62,7 @@ class Counters;
class CpuFeatures;
class CpuProfiler;
class DeoptimizerData;
+class MaterializedObjectStore;
Michael Starzinger 2014/01/14 09:50:18 nit: Can we alpha-sort the forward declarations?
Jarin 2014/01/27 15:40:58 Done.
class Deserializer;
class EmptyStatement;
class ExternalCallbackScope;
@@ -869,6 +870,9 @@ class Isolate {
StubCache* stub_cache() { return stub_cache_; }
DeoptimizerData* deoptimizer_data() { return deoptimizer_data_; }
ThreadLocalTop* thread_local_top() { return &thread_local_top_; }
+ MaterializedObjectStore* materialized_object_store() {
+ return materialized_object_store_;
+ }
MemoryAllocator* memory_allocator() {
return memory_allocator_;
@@ -1266,6 +1270,7 @@ class Isolate {
StatsTable* stats_table_;
StubCache* stub_cache_;
DeoptimizerData* deoptimizer_data_;
+ MaterializedObjectStore* materialized_object_store_;
ThreadLocalTop thread_local_top_;
bool capture_stack_trace_for_uncaught_exceptions_;
int stack_trace_for_uncaught_exceptions_frame_limit_;

Powered by Google App Engine
This is Rietveld 408576698