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
The assertion is:
if (receiver.parentModule != module &&
!module.subModules.contains(receiver.parentModule)) {
// This should never happen!
assert(false, 'Receiver is not in this module or a submodule.');
continue;
}
This fails for modules that are optimized out and receiver that is also optimized out.
To Reproduce
Use a bunch of subset connections in the hierarchy
Expected behavior
No response
Actual behavior
No response
Additional: Dart SDK info
Dart SDK version: 3.3.3 (stable) (None) on "linux_x64"
Additional: pubspec.yaml
No response
Additional: Context
No response
The text was updated successfully, but these errors were encountered:
Describe the bug
The assertion is:
if (receiver.parentModule != module &&
!module.subModules.contains(receiver.parentModule)) {
// This should never happen!
assert(false, 'Receiver is not in this module or a submodule.');
continue;
}
This fails for modules that are optimized out and receiver that is also optimized out.
To Reproduce
Use a bunch of subset connections in the hierarchy
Expected behavior
No response
Actual behavior
No response
Additional: Dart SDK info
Dart SDK version: 3.3.3 (stable) (None) on "linux_x64"
Additional: pubspec.yaml
No response
Additional: Context
No response
The text was updated successfully, but these errors were encountered: