| OLD | NEW |
| 1 // Copyright 2017 the V8 project authors. All rights reserved. | 1 // Copyright 2017 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 "testing/gtest/include/gtest/gtest.h" | 5 #include "testing/gtest/include/gtest/gtest.h" |
| 6 | 6 |
| 7 #include "include/v8.h" | 7 #include "include/v8.h" |
| 8 #include "test/unittests/test-utils.h" | 8 #include "test/unittests/test-utils.h" |
| 9 | 9 |
| 10 namespace v8 { | 10 namespace v8 { |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 AccessCheck, NamedPropertyHandlerConfiguration(NamedGetter), | 60 AccessCheck, NamedPropertyHandlerConfiguration(NamedGetter), |
| 61 IndexedPropertyHandlerConfiguration()); | 61 IndexedPropertyHandlerConfiguration()); |
| 62 constructor_template->Inherit(parent_template); | 62 constructor_template->Inherit(parent_template); |
| 63 | 63 |
| 64 Local<Object> remote_context = | 64 Local<Object> remote_context = |
| 65 Context::NewRemoteContext(isolate(), | 65 Context::NewRemoteContext(isolate(), |
| 66 constructor_template->InstanceTemplate()) | 66 constructor_template->InstanceTemplate()) |
| 67 .ToLocalChecked(); | 67 .ToLocalChecked(); |
| 68 EXPECT_TRUE(parent_template->HasInstance(remote_context)); | 68 EXPECT_TRUE(parent_template->HasInstance(remote_context)); |
| 69 EXPECT_TRUE(constructor_template->HasInstance(remote_context)); | 69 EXPECT_TRUE(constructor_template->HasInstance(remote_context)); |
| 70 | |
| 71 EXPECT_EQ(remote_context, | |
| 72 remote_context->FindInstanceInPrototypeChain(parent_template)); | |
| 73 EXPECT_EQ(remote_context, | |
| 74 remote_context->FindInstanceInPrototypeChain(constructor_template)); | |
| 75 } | 70 } |
| 76 | 71 |
| 77 } // namespace v8 | 72 } // namespace v8 |
| OLD | NEW |