-
Notifications
You must be signed in to change notification settings - Fork 2
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
Behavior of string.eq for null strings #18
Comments
I wonder if it would be convenient to have |
Perhaps one observation if the instruction traps. What's often seen in languages are patterns like if (somestring == null) {
...
} and if (somestring == otherstring) {
...
} In the first case the source-level operation can be statically replaced with a block (result i32)
local.get $lhs
ref.is_null
if
local.get $rhs
ref.is_null
else
local.get $rhs
ref.is_null
if
i32.const 0
else
local.get $lhs
local.get $rhs
string.eq
end
end
end So I wonder if adhering to |
Those sound like good arguments to me :) |
I assume that string.eq should only compare non-null strings; that if either operand is null, that's a trap. But, we should make it explicit.
The text was updated successfully, but these errors were encountered: