-
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
string.new*
, string.const
, string.concat
should produce non-nullable results
#42
Comments
A follow-up question that's less clear to me is what to do about the views. We could specify the three We could then go a step further and assume that this makes nullable view references unused, and change all the view-consuming instructions to consume non-null views. Would that be desirable, because it fits in well with the open questions around where to fit the views into the type system, which might get resolved by making them standalone (non- |
I've gone ahead and implemented the changes I expect to be non-controversial: https://chromium-review.googlesource.com/c/v8/v8/+/3858236 Of course we can further iterate on the behavior if needed. |
AFAIU this change would introduce a layering between the stringrefs proposal and GC where there was none before. Three options:
Thoughts? ISTR the timeline for stringrefs eventually shipping (should it reach that stage) would be not dissimilar to GC, so perhaps it makes sense to take option (2). Thoughts? |
Relatedly, if we made this change, it could make sense to remove the one-byte shorthand for the nullable stringref type, and instead require the two-byte format ( |
Where do you see a dependency on the GC proposal? Both
so depending on that is probably fine. I don't feel strongly about the one-byte shorthand for |
Ah, I had just imagined that typed function references was in practice part of GC. In my mind typed-function-references was stuck but I see that it has become unstuck; thanks for the correction! |
Currently, the spec text for the various string creating instructions says that the result has type
stringref
, e.g.:With
stringref
being nullable (contrary to initial assumptions?), that doesn't make a whole lot of sense: I think the result type should be a non-nullable(ref string)
instead.(This would be similar to e.g.
struct.new $t
, which also returns a non-nullable(ref $t)
.)The text was updated successfully, but these errors were encountered: