cc80ccfaa0
Make sure that calls to super class methods from mixin application stubs are always generated using `super` and not `this`. Replacing `super` by `this` should not be used as non-virtual field access optimization in forwarding stubs that intend to redirect to the super class members (using `this` redirects to itself and causes infinite recursion). Closes: https://github.com/dart-lang/sdk/issues/50119 Change-Id: Ib9c9aebdc88555518998db64aefa1fd0905c5b11 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/267822 Reviewed-by: Nicholas Shahan <nshahan@google.com> Commit-Queue: Anna Gringauze <annagrin@google.com>