You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cf. dart-lang/language#997, a return type of dynamic, dynamic?, or dynamic* is now propagated such that the future value type will be dynamic (before that spec change, it was specified to be Object?, which caused unintended breakage).
This issue exists in order to keep track of the implementation changes corresponding to this spec change. The CFE currently (commit 24c50fb) does not raise an error for the following example:
which may indicate that the change has already been implemented, or that neither dart-lang/language#997 nor an earlier change introducing the future value type have been implemented (or something similar to that). So the work may or may not have been completed already.
The text was updated successfully, but these errors were encountered:
Cf. dart-lang/language#997, a return type of
dynamic
,dynamic?
, ordynamic*
is now propagated such that the future value type will bedynamic
(before that spec change, it was specified to beObject?
, which caused unintended breakage).This issue exists in order to keep track of the implementation changes corresponding to this spec change. The CFE currently (commit 24c50fb) does not raise an error for the following example:
which may indicate that the change has already been implemented, or that neither dart-lang/language#997 nor an earlier change introducing the future value type have been implemented (or something similar to that). So the work may or may not have been completed already.
The text was updated successfully, but these errors were encountered: