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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 bool SetContextLocalValue(Handle<ScopeInfo> scope_info, | 132 bool SetContextLocalValue(Handle<ScopeInfo> scope_info, |
133 Handle<Context> context, | 133 Handle<Context> context, |
134 Handle<String> variable_name, | 134 Handle<String> variable_name, |
135 Handle<Object> new_value); | 135 Handle<Object> new_value); |
136 | 136 |
137 void CopyContextLocalsToScopeObject(Handle<ScopeInfo> scope_info, | 137 void CopyContextLocalsToScopeObject(Handle<ScopeInfo> scope_info, |
138 Handle<Context> context, | 138 Handle<Context> context, |
139 Handle<JSObject> scope_object); | 139 Handle<JSObject> scope_object); |
140 bool CopyContextExtensionToScopeObject(Handle<JSObject> extension, | 140 bool CopyContextExtensionToScopeObject(Handle<JSObject> extension, |
141 Handle<JSObject> scope_object, | 141 Handle<JSObject> scope_object, |
142 JSReceiver::KeyCollectionType type); | 142 KeyCollectionType type); |
143 | 143 |
144 DISALLOW_IMPLICIT_CONSTRUCTORS(ScopeIterator); | 144 DISALLOW_IMPLICIT_CONSTRUCTORS(ScopeIterator); |
145 }; | 145 }; |
146 | 146 |
147 } // namespace internal | 147 } // namespace internal |
148 } // namespace v8 | 148 } // namespace v8 |
149 | 149 |
150 #endif // V8_DEBUG_DEBUG_SCOPES_H_ | 150 #endif // V8_DEBUG_DEBUG_SCOPES_H_ |
OLD | NEW |