OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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/v8.h" | 5 #include "src/v8.h" |
6 | 6 |
7 #include "src/accessors.h" | 7 #include "src/accessors.h" |
8 #include "src/arguments.h" | 8 #include "src/arguments.h" |
9 #include "src/compiler.h" | 9 #include "src/compiler.h" |
10 #include "src/debug.h" | 10 #include "src/debug.h" |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 break; | 73 break; |
74 case LookupIterator::INTEGER_INDEXED_EXOTIC: | 74 case LookupIterator::INTEGER_INDEXED_EXOTIC: |
75 case LookupIterator::INTERCEPTOR: | 75 case LookupIterator::INTERCEPTOR: |
76 case LookupIterator::JSPROXY: | 76 case LookupIterator::JSPROXY: |
77 return it->isolate()->factory()->undefined_value(); | 77 return it->isolate()->factory()->undefined_value(); |
78 case LookupIterator::ACCESSOR: { | 78 case LookupIterator::ACCESSOR: { |
79 Handle<Object> accessors = it->GetAccessors(); | 79 Handle<Object> accessors = it->GetAccessors(); |
80 if (!accessors->IsAccessorInfo()) { | 80 if (!accessors->IsAccessorInfo()) { |
81 return it->isolate()->factory()->undefined_value(); | 81 return it->isolate()->factory()->undefined_value(); |
82 } | 82 } |
83 MaybeHandle<Object> maybe_result = JSObject::GetPropertyWithAccessor( | 83 MaybeHandle<Object> maybe_result = |
84 it->GetReceiver(), it->name(), it->GetHolder<JSObject>(), | 84 JSObject::GetPropertyWithAccessor(it); |
85 accessors); | |
86 Handle<Object> result; | 85 Handle<Object> result; |
87 if (!maybe_result.ToHandle(&result)) { | 86 if (!maybe_result.ToHandle(&result)) { |
88 result = handle(it->isolate()->pending_exception(), it->isolate()); | 87 result = handle(it->isolate()->pending_exception(), it->isolate()); |
89 it->isolate()->clear_pending_exception(); | 88 it->isolate()->clear_pending_exception(); |
90 if (has_caught != NULL) *has_caught = true; | 89 if (has_caught != NULL) *has_caught = true; |
91 } | 90 } |
92 return result; | 91 return result; |
93 } | 92 } |
94 | 93 |
95 case LookupIterator::DATA: | 94 case LookupIterator::DATA: |
(...skipping 3115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3211 return Smi::FromInt(isolate->debug()->is_active()); | 3210 return Smi::FromInt(isolate->debug()->is_active()); |
3212 } | 3211 } |
3213 | 3212 |
3214 | 3213 |
3215 RUNTIME_FUNCTION(Runtime_DebugBreakInOptimizedCode) { | 3214 RUNTIME_FUNCTION(Runtime_DebugBreakInOptimizedCode) { |
3216 UNIMPLEMENTED(); | 3215 UNIMPLEMENTED(); |
3217 return NULL; | 3216 return NULL; |
3218 } | 3217 } |
3219 } // namespace internal | 3218 } // namespace internal |
3220 } // namespace v8 | 3219 } // namespace v8 |
OLD | NEW |