Index: src/debug/debug-scopes.h |
diff --git a/src/debug/debug-scopes.h b/src/debug/debug-scopes.h |
index 1cbdcdcfbeda1b98742fe72117d38d265eb09bc0..3c0364687251cf5eb1107795979977d05a551a9b 100644 |
--- a/src/debug/debug-scopes.h |
+++ b/src/debug/debug-scopes.h |
@@ -24,6 +24,7 @@ class ScopeIterator { |
ScopeTypeClosure, |
ScopeTypeCatch, |
ScopeTypeBlock, |
+ ScopeTypeEval, |
ScopeTypeScript, |
ScopeTypeModule |
}; |
@@ -117,13 +118,13 @@ class ScopeIterator { |
MUST_USE_RESULT MaybeHandle<JSObject> MaterializeModuleScope(); |
Handle<JSObject> MaterializeClosure(); |
Handle<JSObject> MaterializeCatchScope(); |
- Handle<JSObject> MaterializeBlockScope(); |
+ Handle<JSObject> MaterializeInnerScope(); |
Handle<JSObject> WithContextExtension(); |
bool SetLocalVariableValue(Handle<String> variable_name, |
Handle<Object> new_value); |
- bool SetBlockVariableValue(Handle<String> variable_name, |
- Handle<Object> new_value); |
+ bool SetInnerScopeVariableValue(Handle<String> variable_name, |
+ Handle<Object> new_value); |
bool SetClosureVariableValue(Handle<String> variable_name, |
Handle<Object> new_value); |
bool SetScriptVariableValue(Handle<String> variable_name, |
@@ -147,7 +148,7 @@ class ScopeIterator { |
void CopyContextLocalsToScopeObject(Handle<ScopeInfo> scope_info, |
Handle<Context> context, |
Handle<JSObject> scope_object); |
- bool CopyContextExtensionToScopeObject(Handle<JSObject> extension, |
+ void CopyContextExtensionToScopeObject(Handle<Context> context, |
Handle<JSObject> scope_object, |
KeyCollectionType type); |