3183573a79
It is possible for an abstract member to be overridden with another abstract member with different signature (that has, for example, more optional parameters). In such cases, the noSuchMethod forwarders should be generated for each distinct signature. Closes #40248. Bug: http://dartbug.com/40248 Change-Id: I7974415f0ecb78f05d7265ecf9d57cc0d38e6c41 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/132661 Commit-Queue: Dmitry Stefantsov <dmitryas@google.com> Reviewed-by: Johnni Winther <johnniwinther@google.com>
Feature tests for noSuchMethod forwarding
This directory was created in order to hold tests pertaining to the
Dart feature which causes forwarding methods to be generated
implicitly for all method signatures in the interface of a class that
declares a non-trivial noSuchMethod. For more details, please check
the
feature specification.