2017-03-20 13:19:20 +00:00
|
|
|
// Copyright 2017 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
// Access any property that's also available on the global of the other realm.
|
2017-08-01 00:40:22 +00:00
|
|
|
this.__defineGetter__("Object", ()=>0);
|
2017-03-20 13:19:20 +00:00
|
|
|
__proto__ = Realm.global(Realm.create());
|
|
|
|
Object;
|