LCOV - code coverage report

Current view
top level - src/_impl/native - _platform.dart
Test
lcov.info
Date
2025-03-26
Legend
Lines
hit
not hit
Branches
taken
not taken
# not executed
HitTotalCoverage
Lines4580.0%
Functions00-
Branches00-
Each row represents a line of source code
LineBranchHitsSource code
1import 'dart:isolate';
2
3import 'package:meta/meta.dart';
4
5import '../../converters/cast_converter.dart';
6import '../../converters/converter.dart';
7import '../../squadron_platform_type.dart';
8import '../../utils.dart';
9
1015final threadId = Isolate.current.hashCode.hex;
11
1210Converter getPlatformConverter() => CastConverter.instance;
13
1412SquadronPlatformType getPlatformType() => SquadronPlatformType.vm;
15
160Uri mapUrl(String url) => Uri.parse(url);
17
183@internal
19bool isSameInstance(Object a, Object b) => identical(a, b);
Choose Features