-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
[dart2wasm] Incorrect ParamInfo
for non-nullable non-optional named args with no default values
#50587
Comments
I wonder if there's a Kernel bug involved here. In the |
It could be a bug in the CFE computation of the noSuchMethod forwarder created for
where Or it could be a lack specification as of how to handle default values for noSuchMethod forwarders in face of null safety. Currently we assume that optional parameters have nullable types (which they are required to if they are non-abstract) and therefore converts the missing default value to @eernstg Do you have an idea of what the correct handling of noSuchMethod forwarders should be in this case? |
Why is it valid to write class Cat {
bool eatFood(String food) => true;
}
class MockCat3 extends MockCat2 implements Cat {
bool eatFood(String food, {double amount});
} Doesn't the language require any optional parameters added in overriden methods to be either nullable (so they can have
Friendly ping @dart-lang/language-team This doesn't seem to be a dart2wasm issue (and currently the code compiles & runs the same way in wasm as in VM). |
Oh, I didn't see the reference to me in this issue at first, and it's several hundred days ago, sorry about that! We do have an issue on precisely this topic: dart-lang/language#3331.
Yes, a noSuchMethod forwarder (or thrower) should have a signature which is obtained from the interface of the run-time type of the object. So This cannot be implemented directly because My proposal in dart-lang/language#3331 is that this should be a run-time error: No default value is available, but it was needed, so we throw. Another possible response could be to generate a noSuchMethod forwarder whose parameter type is nullable, using the default value null. That would satisfy all the normal rules of the language because the class actually has an implementation of the given method which is a correct override of the statically known member signature. According to dart-lang/language#3331, This means that no particular approach is being used consistently today, and we might be able to do whatever we want without considering this to be a significantly breaking change. The 2nd approach above (just adding null to the relevant parameter type) might be the least breaking approach, because it doesn't throw when the given member is invoked without an actual argument for that parameter. On the other hand, changing the member signature in order to obtain an implementable signature which can be used to generate a noSuchMethod forwarder or thrower, that seems to be a novel idea, and not a pretty one. If we go down that path then we could also say that "every parameter type of a noSuchMethod forwarder has type |
@eernstg Should we make this a duplicate of dart-lang/language#3331? |
I think there's a language part (dart-lang/language#3331) that needs to be resolved, and then there's an issue which is concerned with the implementation of whatever behavior turns out to be the specified one (that is this issue, plus perhaps some other issues dealing with the same question in the context of other tools). Maybe the latter are 'blocked-on' dart-lang/language#3331? |
Once the language has specified the right behavior, language team can add tests for the behavior. If those tests fail for any backend, please file backend-specific issues. Right now there's nothing we need to do for dart2wasm IIUC. So I'm going to close this one (in favor of dart-lang/language#3331) |
OK, thanks! |
In this program, the
ParamInfo
foreatFood
selector has a named parameter withNullConstant(null)
as the default value of the parameter.However type of the parameter is
f64
and inputs of the Wasm function for this member is[ref #Top, ref Object, f64]
. So when we try to initialize the missing non-required named argument with anull
value,convertType
assumes this is dead code (asnull
is not a validf64
value) and generatesunreachable
.The problem seems to be the type, which should be nullable. If I print invocation object in
noSuchMethod
and don't passamount
in the last line, AOT prints{Symbol("amount"): null}
as the named arguments. Sonull
should be a valid value for that named argument.The text was updated successfully, but these errors were encountered: