LCOV - code coverage report

Current view
top level - src - bootstrapper.dart
Test
lcov.info
Date
2025-03-26
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 '_impl/xplat/_bootstrapper.dart'
2 if (dart.library.io) '_impl/native/_bootstrapper.dart'
3 if (dart.library.html) '_impl/web/_bootstrapper.dart'
4 if (dart.library.js) '_impl/web/_bootstrapper.dart'
5 if (dart.library.js_interop) '_impl/web/_bootstrapper.dart' as impl;
6import 'typedefs.dart';
7import 'worker/worker_request.dart';
8import 'worker_service.dart';
9
10/// Instantiates a [WorkerService] via the [initializer] and installs the service in a platform worker.
11/// The [command] argument is ignored on Web platforms. On native platforms, the [command] argument *must
12/// be* set to the [Isolate]'s startup parameter.
1310void run(WorkerInitializer initializer, [WorkerRequest? command]) =>
1410 impl.bootstrap(initializer, command);
Choose Features