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

Unified Diff: src/ast/scopes.h

Issue 2242193002: [Interpreter] Avoid accessing Isolate from during bytecode generation. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@offheap_sourceposition
Patch Set: Created 4 years, 4 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 | « no previous file | src/interpreter/bytecode-array-builder.h » ('j') | src/interpreter/bytecode-generator.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ast/scopes.h
diff --git a/src/ast/scopes.h b/src/ast/scopes.h
index dd65d48c4a14c4e234e958c8ddc8c1a78648fdf0..97849b7ea011cb62fc48cf410d85acf753f2b2b2 100644
--- a/src/ast/scopes.h
+++ b/src/ast/scopes.h
@@ -427,6 +427,12 @@ class Scope: public ZoneObject {
int num_var() const { return variables_.occupancy(); }
+ // GetScopeInfo() must have been called once to create the ScopeInfo.
+ Handle<ScopeInfo> scope_info() {
Michael Starzinger 2016/08/16 09:10:21 nit: Can we move this to below the declration of "
rmcilroy 2016/08/16 11:24:54 Done.
+ DCHECK(!scope_info_.is_null());
+ return scope_info_;
+ }
+
// ---------------------------------------------------------------------------
// Debugging.
« no previous file with comments | « no previous file | src/interpreter/bytecode-array-builder.h » ('j') | src/interpreter/bytecode-generator.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698