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/ic/ic.h" | 5 #include "src/ic/ic.h" |
6 | 6 |
7 #include <iostream> | |
8 | |
9 #include "src/accessors.h" | 7 #include "src/accessors.h" |
10 #include "src/api-arguments-inl.h" | 8 #include "src/api-arguments-inl.h" |
11 #include "src/api.h" | 9 #include "src/api.h" |
12 #include "src/arguments.h" | 10 #include "src/arguments.h" |
13 #include "src/base/bits.h" | 11 #include "src/base/bits.h" |
14 #include "src/codegen.h" | 12 #include "src/codegen.h" |
15 #include "src/conversions.h" | 13 #include "src/conversions.h" |
16 #include "src/execution.h" | 14 #include "src/execution.h" |
17 #include "src/field-type.h" | 15 #include "src/field-type.h" |
18 #include "src/frames-inl.h" | 16 #include "src/frames-inl.h" |
(...skipping 2888 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2907 DCHECK_EQ(LookupIterator::INTERCEPTOR, it.state()); | 2905 DCHECK_EQ(LookupIterator::INTERCEPTOR, it.state()); |
2908 it.Next(); | 2906 it.Next(); |
2909 ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, result, | 2907 ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, result, |
2910 Object::GetProperty(&it)); | 2908 Object::GetProperty(&it)); |
2911 } | 2909 } |
2912 | 2910 |
2913 return *result; | 2911 return *result; |
2914 } | 2912 } |
2915 } // namespace internal | 2913 } // namespace internal |
2916 } // namespace v8 | 2914 } // namespace v8 |
OLD | NEW |