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/builtins.h" | 5 #include "src/builtins.h" |
6 | 6 |
7 #include "src/api.h" | 7 #include "src/api.h" |
8 #include "src/api-natives.h" | 8 #include "src/api-natives.h" |
9 #include "src/arguments.h" | 9 #include "src/arguments.h" |
10 #include "src/base/once.h" | 10 #include "src/base/once.h" |
(...skipping 1562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1573 HandleScope scope(isolate); | 1573 HandleScope scope(isolate); |
1574 DCHECK_EQ(2, args.length()); | 1574 DCHECK_EQ(2, args.length()); |
1575 Handle<Object> target = args.at<Object>(1); | 1575 Handle<Object> target = args.at<Object>(1); |
1576 | 1576 |
1577 if (!target->IsJSReceiver()) { | 1577 if (!target->IsJSReceiver()) { |
1578 THROW_NEW_ERROR_RETURN_FAILURE( | 1578 THROW_NEW_ERROR_RETURN_FAILURE( |
1579 isolate, NewTypeError(MessageTemplate::kCalledOnNonObject, | 1579 isolate, NewTypeError(MessageTemplate::kCalledOnNonObject, |
1580 isolate->factory()->NewStringFromAsciiChecked( | 1580 isolate->factory()->NewStringFromAsciiChecked( |
1581 "Reflect.getPrototypeOf"))); | 1581 "Reflect.getPrototypeOf"))); |
1582 } | 1582 } |
1583 | 1583 Handle<Object> prototype; |
1584 return *Object::GetPrototype(isolate, target); | 1584 ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, prototype, |
| 1585 Object::GetPrototype(isolate, target)); |
| 1586 return *prototype; |
1585 } | 1587 } |
1586 | 1588 |
1587 | 1589 |
1588 // ES6 section 26.1.9 Reflect.has | 1590 // ES6 section 26.1.9 Reflect.has |
1589 BUILTIN(ReflectHas) { | 1591 BUILTIN(ReflectHas) { |
1590 HandleScope scope(isolate); | 1592 HandleScope scope(isolate); |
1591 DCHECK_EQ(3, args.length()); | 1593 DCHECK_EQ(3, args.length()); |
1592 Handle<Object> target = args.at<Object>(1); | 1594 Handle<Object> target = args.at<Object>(1); |
1593 Handle<Object> key = args.at<Object>(2); | 1595 Handle<Object> key = args.at<Object>(2); |
1594 | 1596 |
(...skipping 796 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2391 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) | 2393 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) |
2392 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) | 2394 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) |
2393 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) | 2395 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) |
2394 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) | 2396 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) |
2395 #undef DEFINE_BUILTIN_ACCESSOR_C | 2397 #undef DEFINE_BUILTIN_ACCESSOR_C |
2396 #undef DEFINE_BUILTIN_ACCESSOR_A | 2398 #undef DEFINE_BUILTIN_ACCESSOR_A |
2397 | 2399 |
2398 | 2400 |
2399 } // namespace internal | 2401 } // namespace internal |
2400 } // namespace v8 | 2402 } // namespace v8 |
OLD | NEW |