OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_DEBUG_DEBUG_SCOPES_H_ | 5 #ifndef V8_DEBUG_DEBUG_SCOPES_H_ |
6 #define V8_DEBUG_DEBUG_SCOPES_H_ | 6 #define V8_DEBUG_DEBUG_SCOPES_H_ |
7 | 7 |
8 #include "src/debug/debug-frames.h" | 8 #include "src/debug/debug-frames.h" |
9 #include "src/frames.h" | 9 #include "src/frames.h" |
10 | 10 |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 bool SetCatchVariableValue(Handle<String> variable_name, | 109 bool SetCatchVariableValue(Handle<String> variable_name, |
110 Handle<Object> new_value); | 110 Handle<Object> new_value); |
111 bool SetContextLocalValue(Handle<ScopeInfo> scope_info, | 111 bool SetContextLocalValue(Handle<ScopeInfo> scope_info, |
112 Handle<Context> context, | 112 Handle<Context> context, |
113 Handle<String> variable_name, | 113 Handle<String> variable_name, |
114 Handle<Object> new_value); | 114 Handle<Object> new_value); |
115 | 115 |
116 void CopyContextLocalsToScopeObject(Handle<ScopeInfo> scope_info, | 116 void CopyContextLocalsToScopeObject(Handle<ScopeInfo> scope_info, |
117 Handle<Context> context, | 117 Handle<Context> context, |
118 Handle<JSObject> scope_object); | 118 Handle<JSObject> scope_object); |
| 119 bool CopyContextExtensionToScopeObject(Handle<JSObject> extension, |
| 120 Handle<JSObject> scope_object, |
| 121 JSReceiver::KeyCollectionType type); |
119 | 122 |
120 DISALLOW_IMPLICIT_CONSTRUCTORS(ScopeIterator); | 123 DISALLOW_IMPLICIT_CONSTRUCTORS(ScopeIterator); |
121 }; | 124 }; |
122 | 125 |
123 } // namespace internal | 126 } // namespace internal |
124 } // namespace v8 | 127 } // namespace v8 |
125 | 128 |
126 #endif // V8_DEBUG_DEBUG_SCOPES_H_ | 129 #endif // V8_DEBUG_DEBUG_SCOPES_H_ |
OLD | NEW |