LCOV - code coverage report

Current view
top level - src/_impl/xplat - _forward_completer.dart
Test
lcov.info
Date
2026-02-21
Legend
Lines
hit
not hit
Branches
taken
not taken
# not executed
HitTotalCoverage
Lines33100.0%
Functions00-
Branches00-
Each row represents a line of source code
LineBranchHitsSource code
1import 'dart:async';
2
3import '../../exceptions/squadron_exception.dart';
4import '../../utils.dart';
5
6class ForwardCompleter<T> {
7 final _res = Completer<T>();
8
930 Future<T> get future => _res.future;
10
1130 void success(T data) => _res.safeComplete(data);
12
139 void failure(SquadronException ex) => _res.safeCompleteError(ex);
14}
Choose Features