LCOV - code coverage report

Current view
top level - src - bootstrapper.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 '_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_interop) '_impl/web/_bootstrapper.dart' as impl;
5import 'worker/worker_request.dart';
6import 'worker_service.dart';
7
8/// Instantiates a [WorkerService] via the [initializer] and installs the service in a platform worker.
9/// The [command] argument is ignored on Web platforms. On native platforms, the [command] argument *must
10/// be* set to the [Isolate]'s startup parameter.
119void run(WorkerInitializer initializer, [WorkerRequest? command]) =>
129 impl.bootstrap(initializer, command);
Choose Features