| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 #include "src/debug/liveedit.h" | 5 #include "src/debug/liveedit.h" |
| 6 | 6 |
| 7 #include "src/ast/scopes.h" | 7 #include "src/ast/scopes.h" |
| 8 #include "src/code-stubs.h" | 8 #include "src/code-stubs.h" |
| 9 #include "src/compilation-cache.h" | 9 #include "src/compilation-cache.h" |
| 10 #include "src/compiler.h" | 10 #include "src/compiler.h" |
| 11 #include "src/debug/debug.h" | 11 #include "src/debug/debug.h" |
| 12 #include "src/deoptimizer.h" | 12 #include "src/deoptimizer.h" |
| 13 #include "src/frames-inl.h" | 13 #include "src/frames-inl.h" |
| 14 #include "src/global-handles.h" | 14 #include "src/global-handles.h" |
| 15 #include "src/isolate-inl.h" | 15 #include "src/isolate-inl.h" |
| 16 #include "src/messages.h" | 16 #include "src/messages.h" |
| 17 #include "src/parsing/parser.h" | |
| 18 #include "src/source-position-table.h" | 17 #include "src/source-position-table.h" |
| 19 #include "src/v8.h" | 18 #include "src/v8.h" |
| 20 #include "src/v8memory.h" | 19 #include "src/v8memory.h" |
| 21 | 20 |
| 22 namespace v8 { | 21 namespace v8 { |
| 23 namespace internal { | 22 namespace internal { |
| 24 | 23 |
| 25 void SetElementSloppy(Handle<JSObject> object, | 24 void SetElementSloppy(Handle<JSObject> object, |
| 26 uint32_t index, | 25 uint32_t index, |
| 27 Handle<Object> value) { | 26 Handle<Object> value) { |
| (...skipping 1888 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1916 scope_info_length++; | 1915 scope_info_length++; |
| 1917 | 1916 |
| 1918 current_scope = current_scope->outer_scope(); | 1917 current_scope = current_scope->outer_scope(); |
| 1919 } | 1918 } |
| 1920 | 1919 |
| 1921 return scope_info_list; | 1920 return scope_info_list; |
| 1922 } | 1921 } |
| 1923 | 1922 |
| 1924 } // namespace internal | 1923 } // namespace internal |
| 1925 } // namespace v8 | 1924 } // namespace v8 |
| OLD | NEW |