-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
The '?' and '!' syntax in algorithms is very poorly chosen #568
Comments
"unbox" doesn't say what "!" does which is both an unboxing and an assertion that the completion record is never an abrupt completion. The latter is really the most important part. I'm open to changing (and agree with point 2 above) but I'd need to see a good alternative. We did discuss alternatives for some time so I don't anticipate this will be an easy task :) |
I'm not tied to "unbox", though it's common for "unbox" operations to assert that the unboxing is ok.... Is the existing discussion archived somewhere, in full or summary form? What alternatives were considered? |
I have to make some effort in order to not read "!" as "not"... The best I'm currently thinking of are "unbox-or-throw" and "nothrow-unbox". |
|
! -> 👌 |
I recomend using something people might actually have the fonts for.... ;) |
I am not against using Unicode for this in case folks are joking. It's not hard to set up your editor to make things easy to author and we have precedent (eg. « »). I think ⏎ is reasonable for return-if-abrupt but I can't think of a good alternative for !. |
Thanks. None of the discussion there really considers non-single-char alternatives, looks like, or indeed any chars other than '!' and '?'... There are suggestions in those issues to auto-linkify, though, which I think would have been a good idea no matter what: "read the algorithm conventions" is hard enough inside ecma262, given that they're not very prominent, but people are now trying to use this syntax in other specs, without ever really making it clear that they're using the ecma262 conventions ... and expecting people to guess that while in the middle of spec A (which is where they got dumped when they followed a link for "spec for X") they really need to go read some mildly-hidden preface matter from spec B to understand the notation is pretty annoying. ;) |
On 13 May 2016 at 23:49, Claude Pache [email protected] wrote:
It's C's fault to make such a terrible and abusive choice for its "not" |
Here’s the result of my cogitation:
One could replace |
If we're going to stick with symbolism, I'm partial to these square-based operators:
There's also a large selection of circle-based operators:
|
@michaelficarra I was also playing around with the square operators. Ballot box with x (with I like |
If you go as far as having Unbox and Check, then perhaps they should simply be abstract operations? |
That would kind of break the idea that all abstract ops return completion records. They're probably better as syntactically "special" macros. FWIW I like the current punctuators although the ! vs. negation confusion is sometimes annoying. |
I'm not super exited with
+1 |
That they don't all return such records explicitly is something I find very confusing. Also, e.g., IsCallable does not seem to get unboxed and is assumed to return a primitive by all its callers. So I don't think we have much consistency there one way or another. |
I'm in the same boat, but if people are confused, it should be fixed.
To be fair, screen readers don't read the current punctuators at all (and in general the spec is miserable to use with a screen reader). A lot of work needs to be done to make this better, and I doubt it matters what sigil we use as in any case we'll probably need ecmarkup to generate sensible aria-labels for pretty much everything :-P
My preferred understanding is that every abstract operation that describes runtime semantics returns a completion record. You can understand things like IsCallable in terms of the 6.2.2.2 semantics (hopefully temporary) that allow treating a completion record as a value when it makes sense to do so. |
1 similar comment
I'm in the same boat, but if people are confused, it should be fixed.
To be fair, screen readers don't read the current punctuators at all (and in general the spec is miserable to use with a screen reader). A lot of work needs to be done to make this better, and I doubt it matters what sigil we use as in any case we'll probably need ecmarkup to generate sensible aria-labels for pretty much everything :-P
My preferred understanding is that every abstract operation that describes runtime semantics returns a completion record. You can understand things like IsCallable in terms of the 6.2.2.2 semantics (hopefully temporary) that allow treating a completion record as a value when it makes sense to do so. |
Unbox could be an abstract operation, but Check has to be a shorthand (i.e., macro). If you try to write it as an abstract operation, then when it detects an abrupt completion and returns, it's just returning from Check, not from the caller. |
As I mentioned before, I don't like the idea of using
|
That implies conventional implicit unboxing. In that case, we should make sure that the few places that use the unboxed completion records are marked with explicit non-unboxing, e.g.: « Let foo be the Completion Record returned by ... » |
How many people are confused? |
Everyone I've talked to who has to look at the algorithms involved and wasn't involved in the initial discussions. That's 3 or 4 people so far. |
Given that boxing the returned value is usually implicit, it may be fine to have implicit unboxing:
|
What's the current thinking about static semantics related abstract operations. They must never produce an abrupt completion and hence don't really need to use completion records and callers don't really need to unbox the result. Is the intent to switch handle them switch them to also using completion records/unboxing but with the knowledge that they never produce abrupt completions? |
@allenwb My weak preference is to say that algorithm steps labeled "static semantics" don't return completion records, which means that static semantics don't need to uselessly use the !/?/whatever syntax. However I can understand not wanting to have two types of algorithms with different behavior. What do you think? |
This is still tremendously confusing. In the spec I see things like In the streams spec, which inherits this |
It's not a typo. As to |
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
Okay, that matches my understanding. I have not inspected all cases of
👍 Thank you! |
Certainly if any of them can result in abrupt completion that would be an editorial error we'd need to correct.
That doesn't express the same thing: |
You're right. I think I must have been confused by the multiple flavors of failure (returning false versus an abrupt completion). For some reason, taking a perfectly ordinary boolean return value from |
There are several problems:
! IsCallable(obj)
in an algorithm they think that it means "obj is not callable".Especially as people try to use these sigils in other specifications, with less-expert audiences than ecma262, this is causing real problems. I see the value in using a single algorithm-definition language in ecma262 and other specifications that define things in terms of EcmaScript objects, but if we want to do that we should seriously consider a more understandable syntax.
As a specific suggestion, '!' could be replaced with "unbox" or something along those lines. It would retain the clarity of extracting a value from the completion record, but make it even more clear that something nontrivial is going on, and for people who have never seen the syntax before make them stop and think about what "unbox" actually means instead of assuming that there's just a stray character in the spec draft, which is what they do now when they see the '?' and '!'.
The text was updated successfully, but these errors were encountered: