mirror of https://github.com/tc39/test262.git
Make Proxy/ownKeys tests ES5-parsable. (#1644)
All other Proxy tests use the syntax `attr: function() {...}` for defining traps, ownKeys was unique in using the shorthand syntax. Change to longhand syntax for back-compat for partial implementations.
This commit is contained in:
parent
4f3cbc756d
commit
d817076ddb
|
@ -12,7 +12,7 @@ info: |
|
|||
---*/
|
||||
|
||||
var p = new Proxy({}, {
|
||||
ownKeys() {
|
||||
ownKeys: function() {
|
||||
return ["a", "a"];
|
||||
}
|
||||
});
|
||||
|
|
|
@ -14,7 +14,7 @@ features: [Symbol]
|
|||
|
||||
var s = Symbol();
|
||||
var p = new Proxy({}, {
|
||||
ownKeys() {
|
||||
ownKeys: function() {
|
||||
return [s, s];
|
||||
}
|
||||
});
|
||||
|
|
|
@ -24,7 +24,7 @@ info: |
|
|||
---*/
|
||||
|
||||
var p = new Proxy({}, {
|
||||
ownKeys() {
|
||||
ownKeys: function() {
|
||||
return [
|
||||
[]
|
||||
];
|
||||
|
|
|
@ -24,7 +24,7 @@ info: |
|
|||
---*/
|
||||
|
||||
var p = new Proxy({}, {
|
||||
ownKeys() {
|
||||
ownKeys: function() {
|
||||
return [true];
|
||||
}
|
||||
});
|
||||
|
|
|
@ -24,7 +24,7 @@ info: |
|
|||
---*/
|
||||
|
||||
var p = new Proxy({}, {
|
||||
ownKeys() {
|
||||
ownKeys: function() {
|
||||
return [null];
|
||||
}
|
||||
});
|
||||
|
|
|
@ -24,7 +24,7 @@ info: |
|
|||
---*/
|
||||
|
||||
var p = new Proxy({}, {
|
||||
ownKeys() {
|
||||
ownKeys: function() {
|
||||
return [1];
|
||||
}
|
||||
});
|
||||
|
|
|
@ -24,7 +24,7 @@ info: |
|
|||
---*/
|
||||
|
||||
var p = new Proxy({}, {
|
||||
ownKeys() {
|
||||
ownKeys: function() {
|
||||
return [{}];
|
||||
}
|
||||
});
|
||||
|
|
|
@ -24,7 +24,7 @@ info: |
|
|||
---*/
|
||||
|
||||
var p = new Proxy({}, {
|
||||
ownKeys() {
|
||||
ownKeys: function() {
|
||||
return [undefined];
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue