Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
Ms2ger committed Jul 12, 2024
1 parent e64785e commit 1882960
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 526 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ esid: pending
URIError
];

const expectedOwnKeys = "toSource" in Object.prototype
? "constructor,message,name,stack,toSource,toString"
: "constructor,message,name,stack,toString";
assert.sameValue(Reflect.ownKeys(Error.prototype).sort().toString(), expectedOwnKeys);
const ownKeys = Reflect.ownKeys(Error.prototype);
for (const expected of ["constructor", "message", "name", "toString"]) {
assert(ownKeys.includes(expected), "Error.prototype should have a key named " + expected);
}
assert.sameValue(Error.prototype.name, "Error");
assert.sameValue(Error.prototype.message, "");

Expand Down
26 changes: 0 additions & 26 deletions implementation-contributed/sm/non262/Promise/any-stack-overflow.js

This file was deleted.

50 changes: 0 additions & 50 deletions implementation-contributed/sm/non262/ReadableStream/basic-pull.js

This file was deleted.

66 changes: 0 additions & 66 deletions implementation-contributed/sm/non262/ReadableStream/basic-push.js

This file was deleted.

Loading

0 comments on commit 1882960

Please sign in to comment.