-
Notifications
You must be signed in to change notification settings - Fork 38
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
feat(ecmascript): is_loosely_equal and is_strictly_equal #53
feat(ecmascript): is_loosely_equal and is_strictly_equal #53
Conversation
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.
Nice work, thanks for doing this! A few issues are repeating regarding interpretation of spec text, essentially. Just a tad bit of repetitive logic work.
nova_vm/src/ecmascript/abstract_operations/testing_and_comparison.rs
Outdated
Show resolved
Hide resolved
nova_vm/src/ecmascript/abstract_operations/testing_and_comparison.rs
Outdated
Show resolved
Hide resolved
nova_vm/src/ecmascript/abstract_operations/testing_and_comparison.rs
Outdated
Show resolved
Hide resolved
nova_vm/src/ecmascript/abstract_operations/testing_and_comparison.rs
Outdated
Show resolved
Hide resolved
nova_vm/src/ecmascript/abstract_operations/testing_and_comparison.rs
Outdated
Show resolved
Hide resolved
nova_vm/src/ecmascript/abstract_operations/testing_and_comparison.rs
Outdated
Show resolved
Hide resolved
nova_vm/src/ecmascript/abstract_operations/testing_and_comparison.rs
Outdated
Show resolved
Hide resolved
nova_vm/src/ecmascript/abstract_operations/testing_and_comparison.rs
Outdated
Show resolved
Hide resolved
nova_vm/src/ecmascript/abstract_operations/testing_and_comparison.rs
Outdated
Show resolved
Hide resolved
Co-authored-by: vimirage <vimirage@mirror.simplelogin.com>
LGTM besides the code splitting request (#53 (comment)). |
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.
LGTM, nice work and thanks a lot! <3
773d8cb
to
4990b6a
Compare
LGTM. Aapo should merge soon |
Thank you |
This pr implements the is_loosely_equal and is_strictly_equal operators.
is_loosely_equal still contains sometodo!
s for the stuff I was unsure about, mostly having to do with bigint related operations.