• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

Willian199 / dart_ddi / 19187957026

08 Nov 2025 04:25AM UTC coverage: 83.318% (-2.2%) from 85.545%
19187957026

push

github

web-flow
Doc: Added support to Beans with WeakReference and support to Proxy (#31)

95 of 138 new or added lines in 4 files covered. (68.84%)

1 existing line in 1 file now uncovered.

934 of 1121 relevant lines covered (83.32%)

11.89 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/lib/src/exception/weak_reference_collected.dart
1
/// Exception thrown when a weak reference instance was garbage collected.
2
///
3
/// This exception is thrown when using `useWeakReference: true` in Application scope
4
/// and the instance was collected by the garbage collector. The instance will be
5
/// automatically re-created on the next `get` or `getAsync` call.
6
///
7
/// This exception is used internally to signal that the instance needs to be re-created.
8
/// It should not be caught by user code, as the framework handles it automatically.
9
class WeakReferenceCollectedException implements Exception {
NEW
10
  const WeakReferenceCollectedException(this.type);
×
11
  final String type;
12

NEW
13
  @override
×
14
  String toString() {
NEW
15
    return 'Instance with Type $type was garbage collected. It will be re-created automatically.';
×
16
  }
17
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc