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
causes problems in Dartium as the Dart VM does not accept the generated patch file as @patch class Foo {
...
}
instead of
@patchclassFoo<T exends Bar> {
...
}
We either need to increase the complexity of the patch file generation significantly or extend the existing
ignore_patch_signature_mismatch flag in the dart vm to allow this case.
Given JS interop only emits static and factory constructor methods that do not reference the type arguments, the type mismatch errors should be generally harmless.