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

Unified Diff: src/isolate.h

Issue 2808030: [Isolates] Move InlineRuntimeFunctionTable from runtime.h to codegen.h.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/isolates/
Patch Set: Created 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/codegen.h ('k') | src/isolate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/isolate.h
===================================================================
--- src/isolate.h (revision 4966)
+++ src/isolate.h (working copy)
@@ -58,6 +58,7 @@
class EmptyStatement;
class FunctionInfoListener;
class HandleScopeImplementer;
+class InlineRuntimeFunctionsTable;
class NoAllocationStringAllocator;
class PreallocatedMemoryThread;
class SaveContext;
@@ -571,7 +572,7 @@
AstSentinels* ast_sentinels() { return ast_sentinels_; }
InlineRuntimeFunctionsTable* inline_runtime_functions_table() {
- return &inline_runtime_functions_table_;
+ return inline_runtime_functions_table_;
}
RuntimeState* runtime_state() { return &runtime_state_; }
@@ -692,7 +693,7 @@
ContextSwitcher* context_switcher_;
ThreadManager* thread_manager_;
AstSentinels* ast_sentinels_;
- InlineRuntimeFunctionsTable inline_runtime_functions_table_;
+ InlineRuntimeFunctionsTable* inline_runtime_functions_table_;
RuntimeState runtime_state_;
StringInputBuffer liveedit_compare_substrings_buf1_;
StringInputBuffer liveedit_compare_substrings_buf2_;
« no previous file with comments | « src/codegen.h ('k') | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698