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/runtime/runtime-utils.h" | 5 #include "src/runtime/runtime-utils.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/ast/scopeinfo.h" | 9 #include "src/ast/scopeinfo.h" |
10 #include "src/ast/scopes.h" | 10 #include "src/ast/scopes.h" |
(...skipping 950 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
961 Handle<Object> holder = | 961 Handle<Object> holder = |
962 context->Lookup(name, FOLLOW_CHAINS, &index, &attributes, &flags); | 962 context->Lookup(name, FOLLOW_CHAINS, &index, &attributes, &flags); |
963 if (holder.is_null()) { | 963 if (holder.is_null()) { |
964 // In case of JSProxy, an exception might have been thrown. | 964 // In case of JSProxy, an exception might have been thrown. |
965 if (isolate->has_pending_exception()) return MaybeHandle<Object>(); | 965 if (isolate->has_pending_exception()) return MaybeHandle<Object>(); |
966 } | 966 } |
967 | 967 |
968 // The property was found in a context slot. | 968 // The property was found in a context slot. |
969 if (index != Context::kNotFound) { | 969 if (index != Context::kNotFound) { |
970 if (flags == BINDING_CHECK_INITIALIZED && | 970 if (flags == BINDING_CHECK_INITIALIZED && |
971 Handle<Context>::cast(holder)->is_the_hole(index)) { | 971 Handle<Context>::cast(holder)->is_the_hole(isolate, index)) { |
972 THROW_NEW_ERROR(isolate, | 972 THROW_NEW_ERROR(isolate, |
973 NewReferenceError(MessageTemplate::kNotDefined, name), | 973 NewReferenceError(MessageTemplate::kNotDefined, name), |
974 Object); | 974 Object); |
975 } | 975 } |
976 if ((attributes & READ_ONLY) == 0) { | 976 if ((attributes & READ_ONLY) == 0) { |
977 Handle<Context>::cast(holder)->set(index, *value); | 977 Handle<Context>::cast(holder)->set(index, *value); |
978 } else if (is_strict(language_mode)) { | 978 } else if (is_strict(language_mode)) { |
979 // Setting read only property in strict mode. | 979 // Setting read only property in strict mode. |
980 THROW_NEW_ERROR(isolate, | 980 THROW_NEW_ERROR(isolate, |
981 NewTypeError(MessageTemplate::kStrictCannotAssign, name), | 981 NewTypeError(MessageTemplate::kStrictCannotAssign, name), |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1021 RUNTIME_FUNCTION(Runtime_StoreLookupSlot_Strict) { | 1021 RUNTIME_FUNCTION(Runtime_StoreLookupSlot_Strict) { |
1022 HandleScope scope(isolate); | 1022 HandleScope scope(isolate); |
1023 DCHECK_EQ(2, args.length()); | 1023 DCHECK_EQ(2, args.length()); |
1024 CONVERT_ARG_HANDLE_CHECKED(String, name, 0); | 1024 CONVERT_ARG_HANDLE_CHECKED(String, name, 0); |
1025 CONVERT_ARG_HANDLE_CHECKED(Object, value, 1); | 1025 CONVERT_ARG_HANDLE_CHECKED(Object, value, 1); |
1026 RETURN_RESULT_OR_FAILURE(isolate, StoreLookupSlot(name, value, STRICT)); | 1026 RETURN_RESULT_OR_FAILURE(isolate, StoreLookupSlot(name, value, STRICT)); |
1027 } | 1027 } |
1028 | 1028 |
1029 } // namespace internal | 1029 } // namespace internal |
1030 } // namespace v8 | 1030 } // namespace v8 |
OLD | NEW |