LCOV - code coverage report

Current view
top level - src - typedefs.dart
Test
lcov.info
Date
2024-11-13
Legend
Lines
hit
not hit
Branches
taken
not taken
# not executed
HitTotalCoverage
Lines22100.0%
Functions00-
Branches00-
Each row represents a line of source code
LineBranchHitsSource code
1import 'dart:async';
2
3import '_impl/xplat/_typedefs.dart'
4 if (dart.library.io) '_impl/native/_typedefs.dart'
5 if (dart.library.html) '_impl/web/_typedefs.dart'
6 if (dart.library.js_interop) '_impl/web/_typedefs.dart' as impl;
7
812final threadId = impl.threadId;
9
10typedef EntryPoint = impl.EntryPoint;
11typedef PlatformChannel = impl.PlatformChannel;
12typedef PlatformThread = impl.PlatformThread;
13
14typedef PlatformThreadHook = FutureOr<void> Function(PlatformThread);
15
16extension HexExt on int {
1715 String get hex => '0x${toRadixString(16).padLeft(8, '0')}';
18}
Choose Features