Skip to content

Commit 344bae4

Browse files
committedApr 22, 2022
Fix showProxy inspection
1 parent c5fb7d9 commit 344bae4

File tree

2 files changed

+28
-17
lines changed

2 files changed

+28
-17
lines changed
 

‎lib/bridge.js

+25-15
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,8 @@ const thisErrorCaptureStackTrace = Error.captureStackTrace;
102102

103103
const thisSymbolToString = Symbol.prototype.toString;
104104
const thisSymbolToStringTag = Symbol.toStringTag;
105+
const thisSymbolIterator = Symbol.iterator;
106+
const thisSymbolNodeJSUtilInspectCustom = Symbol.for('nodejs.util.inspect.custom');
105107

106108
/**
107109
* VMError.
@@ -348,7 +350,11 @@ function createBridge(otherInit, registerProxy) {
348350
constructor(object) {
349351
// Note: object@other(unsafe) throws@this(unsafe)
350352
super();
351-
this.object = object;
353+
this.objectWrapper = () => object;
354+
}
355+
356+
getObject() {
357+
return this.objectWrapper();
352358
}
353359

354360
getFactory() {
@@ -408,7 +414,7 @@ function createBridge(otherInit, registerProxy) {
408414

409415
get(target, key, receiver) {
410416
// Note: target@this(unsafe) key@prim receiver@this(unsafe) throws@this(unsafe)
411-
const object = this.object; // @other(unsafe)
417+
const object = this.getObject(); // @other(unsafe)
412418
switch (key) {
413419
case 'constructor': {
414420
const desc = otherSafeGetOwnPropertyDescriptor(object, key);
@@ -447,7 +453,7 @@ function createBridge(otherInit, registerProxy) {
447453

448454
set(target, key, value, receiver) {
449455
// Note: target@this(unsafe) key@prim value@this(unsafe) receiver@this(unsafe) throws@this(unsafe)
450-
const object = this.object; // @other(unsafe)
456+
const object = this.getObject(); // @other(unsafe)
451457
if (key === '__proto__' && !thisOtherHasOwnProperty(object, key)) {
452458
return this.setPrototypeOf(target, value);
453459
}
@@ -471,7 +477,7 @@ function createBridge(otherInit, registerProxy) {
471477

472478
apply(target, context, args) {
473479
// Note: target@this(unsafe) context@this(unsafe) args@this(safe-array) throws@this(unsafe)
474-
const object = this.object; // @other(unsafe)
480+
const object = this.getObject(); // @other(unsafe)
475481
let ret; // @other(unsafe)
476482
try {
477483
context = otherFromThis(context);
@@ -485,7 +491,7 @@ function createBridge(otherInit, registerProxy) {
485491

486492
construct(target, args, newTarget) {
487493
// Note: target@this(unsafe) args@this(safe-array) newTarget@this(unsafe) throws@this(unsafe)
488-
const object = this.object; // @other(unsafe)
494+
const object = this.getObject(); // @other(unsafe)
489495
let ret; // @other(unsafe)
490496
try {
491497
args = otherFromThisArguments(args);
@@ -498,14 +504,14 @@ function createBridge(otherInit, registerProxy) {
498504

499505
getOwnPropertyDescriptorDesc(target, prop, desc) {
500506
// Note: target@this(unsafe) prop@prim desc@other{safe} throws@this(unsafe)
501-
const object = this.object; // @other(unsafe)
507+
const object = this.getObject(); // @other(unsafe)
502508
if (desc && typeof object === 'function' && (prop === 'arguments' || prop === 'caller' || prop === 'callee')) desc.value = null;
503509
return desc;
504510
}
505511

506512
getOwnPropertyDescriptor(target, prop) {
507513
// Note: target@this(unsafe) prop@prim throws@this(unsafe)
508-
const object = this.object; // @other(unsafe)
514+
const object = this.getObject(); // @other(unsafe)
509515
let desc; // @other(safe)
510516
try {
511517
desc = otherSafeGetOwnPropertyDescriptor(object, prop);
@@ -551,7 +557,7 @@ function createBridge(otherInit, registerProxy) {
551557

552558
defineProperty(target, prop, desc) {
553559
// Note: target@this(unsafe) prop@prim desc@this(unsafe) throws@this(unsafe)
554-
const object = this.object; // @other(unsafe)
560+
const object = this.getObject(); // @other(unsafe)
555561
if (!thisReflectSetPrototypeOf(desc, null)) throw thisUnexpected();
556562

557563
desc = this.definePropertyDesc(target, prop, desc);
@@ -604,7 +610,7 @@ function createBridge(otherInit, registerProxy) {
604610

605611
deleteProperty(target, prop) {
606612
// Note: target@this(unsafe) prop@prim throws@this(unsafe)
607-
const object = this.object; // @other(unsafe)
613+
const object = this.getObject(); // @other(unsafe)
608614
try {
609615
return otherReflectDeleteProperty(object, prop) === true;
610616
} catch (e) { // @other(unsafe)
@@ -614,7 +620,7 @@ function createBridge(otherInit, registerProxy) {
614620

615621
has(target, key) {
616622
// Note: target@this(unsafe) key@prim throws@this(unsafe)
617-
const object = this.object; // @other(unsafe)
623+
const object = this.getObject(); // @other(unsafe)
618624
try {
619625
return otherReflectHas(object, key) === true;
620626
} catch (e) { // @other(unsafe)
@@ -624,7 +630,7 @@ function createBridge(otherInit, registerProxy) {
624630

625631
isExtensible(target) {
626632
// Note: target@this(unsafe) throws@this(unsafe)
627-
const object = this.object; // @other(unsafe)
633+
const object = this.getObject(); // @other(unsafe)
628634
try {
629635
if (otherReflectIsExtensible(object)) return true;
630636
} catch (e) { // @other(unsafe)
@@ -638,7 +644,7 @@ function createBridge(otherInit, registerProxy) {
638644

639645
ownKeys(target) {
640646
// Note: target@this(unsafe) throws@this(unsafe)
641-
const object = this.object; // @other(unsafe)
647+
const object = this.getObject(); // @other(unsafe)
642648
let res; // @other(unsafe)
643649
try {
644650
res = otherReflectOwnKeys(object);
@@ -650,7 +656,7 @@ function createBridge(otherInit, registerProxy) {
650656

651657
preventExtensions(target) {
652658
// Note: target@this(unsafe) throws@this(unsafe)
653-
const object = this.object; // @other(unsafe)
659+
const object = this.getObject(); // @other(unsafe)
654660
try {
655661
if (!otherReflectPreventExtensions(object)) return false;
656662
} catch (e) { // @other(unsafe)
@@ -664,7 +670,7 @@ function createBridge(otherInit, registerProxy) {
664670

665671
enumerate(target) {
666672
// Note: target@this(unsafe) throws@this(unsafe)
667-
const object = this.object; // @other(unsafe)
673+
const object = this.getObject(); // @other(unsafe)
668674
let res; // @other(unsafe)
669675
try {
670676
res = otherReflectEnumerate(object);
@@ -676,6 +682,10 @@ function createBridge(otherInit, registerProxy) {
676682

677683
}
678684

685+
BaseHandler.prototype[thisSymbolNodeJSUtilInspectCustom] = undefined;
686+
BaseHandler.prototype[thisSymbolToStringTag] = 'VM2 Wrapper';
687+
BaseHandler.prototype[thisSymbolIterator] = undefined;
688+
679689
function defaultFactory(object) {
680690
// Note: other@other(unsafe) returns@this(unsafe) throws@this(unsafe)
681691
return new BaseHandler(object);
@@ -773,7 +783,7 @@ function createBridge(otherInit, registerProxy) {
773783

774784
get(target, key, receiver) {
775785
// Note: target@this(unsafe) key@prim receiver@this(unsafe) throws@this(unsafe)
776-
const object = this.object; // @other(unsafe)
786+
const object = this.getObject(); // @other(unsafe)
777787
const mock = this.mock;
778788
if (thisReflectApply(thisObjectHasOwnProperty, mock, key) && !thisOtherHasOwnProperty(object, key)) {
779789
return mock[key];

‎test/vm.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,10 @@ describe('node', () => {
9191
before(() => {
9292
vm = new VM();
9393
});
94-
it.skip('inspect', () => {
94+
it('inspect', () => {
9595
assert.throws(() => inspect(doubleProxy), /Expected/);
96-
if (NODE_VERSION !== 10) {
96+
assert.doesNotThrow(() => inspect(vm.run('({})'), {showProxy: true, customInspect: true}));
97+
if (NODE_VERSION !== 10 && false) {
9798
// This failes on node 10 since they do not unwrap proxys.
9899
// And the hack to fix this is only in the inner proxy.
99100
// We could add another hack, but that one would require

0 commit comments

Comments
 (0)
Please sign in to comment.