Skip to content

Commit f4b45c5

Browse files
committed
Made test output more easily debuggable.
1 parent 47f8bd8 commit f4b45c5

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

test/es6/proxy-issue884.baseline

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
has
2-
has
3-
has
4-
has
5-
has
6-
has
1+
has enumerable
2+
has configurable
3+
has value
4+
has writable
5+
has get
6+
has set
77
PASS

test/es6/proxy-issue884.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//-------------------------------------------------------------------------------------------------------
55

66
var proxyHandler = {
7-
has() { WScript.Echo("has"); return true; }
7+
has(t, p) { WScript.Echo("has " + p); return true; }
88
};
99
var p = new Proxy({}, proxyHandler);
1010
var obj = {};

0 commit comments

Comments
 (0)