LCOV - code coverage report

Current view
top level - /src - bootstrapper.dart
Test
lcov.info
Date
2022-04-02
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 'worker_service.dart';
2
3import '_bootstrapper_stub.dart'
4 if (dart.library.js) 'browser/_bootstrapper.dart'
5 if (dart.library.html) 'browser/_bootstrapper.dart'
6 if (dart.library.io) 'native/_bootstrapper.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 be
10/// set to the [Isolate]'s startup parameter.
111void run(WorkerInitializer initializer, [Map? command]) =>
121 bootstrap(initializer, command);
Choose Features