We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There are a few alg steps like these:
Set _entry_.[[State]] to the max of _entry_.[[State]] and "translate".
We need to specify what this means.
How about:
GetStateValue(state)
"fetch"
"translate"
"instantiate"
"link"
"ready"
SetStateToMax(entry, newState)
The text was updated successfully, but these errors were encountered:
Similarely, we have steps like:
1. If _entry_.[[State]] is greater than "link", return a new error promise.
and
1. If _pair_.[[value]].[[State]] is less than "link", then throw a new TypeError.
Sorry, something went wrong.
SetStateToMax()
fixes issue whatwg#16: using GetStateValue() when comparing [[State]]s
fca03ed
Merge pull request #58 from caridy/SetStateToMax
bf50d79
fixes issue #16: abstract operation `SetStateToMax()`
Solved by #65
Closing this now that we have all abstract operations in place.
No branches or pull requests
There are a few alg steps like these:
Set _entry_.[[State]] to the max of _entry_.[[State]] and "translate".
We need to specify what this means.
How about:
GetStateValue(state)
"fetch"
return 0."translate"
return 1."instantiate"
return 2."link"
return 3."ready"
return 4.SetStateToMax(entry, newState)
The text was updated successfully, but these errors were encountered: