-
Notifications
You must be signed in to change notification settings - Fork 464
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update test/built-ins/Object to use verifyProperty function #3935
Conversation
45a4a68
to
58add62
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, this is a great improvement!
It would be ideal to remove all trailing object commas from the additions in this PR, but we can also do that with eslint later since that might be an annoying ask.
test/built-ins/Object/seal/object-seal-all-own-properties-of-o-are-already-non-configurable.js
Show resolved
Hide resolved
test/built-ins/Object/seal/object-seal-all-own-properties-of-o-are-already-non-configurable.js
Show resolved
Hide resolved
...seal/object-seal-p-is-own-accessor-property-that-overrides-an-inherited-accessor-property.js
Show resolved
Hide resolved
...ect/seal/object-seal-p-is-own-accessor-property-that-overrides-an-inherited-data-property.js
Show resolved
Hide resolved
58add62
to
86e02df
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this should get another stamp before merging, since it's so large
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I skimmed this. Of course updating old code always carries a risk, but I think this is a good update. Thanks for doing it!
Update test/built-ins/Object to use the
verifyProperty
harness function. The changes are similar to #3916.