LCOV - code coverage report

Current view
top level - src/_impl/xplat - _platform.dart
Test
lcov.info
Date
2025-03-26
Legend
Lines
hit
not hit
Branches
taken
not taken
# not executed
HitTotalCoverage
Lines1520.0%
Functions00-
Branches00-
Each row represents a line of source code
LineBranchHitsSource code
1import 'package:meta/meta.dart';
2
3import '../../converters/cast_converter.dart';
4import '../../converters/converter.dart';
5import '../../squadron_platform_type.dart';
6import '../web/_platform.dart' if (dart.library.io) '../native/_platform.dart'
7 as impl;
8
94String get threadId => impl.threadId;
10
110Converter getPlatformConverter() => CastConverter.instance;
12
130SquadronPlatformType getPlatformType() => SquadronPlatformType.unknown;
14
150Uri mapUrl(String url) => Uri.parse(url);
16
170@internal
18bool isSameInstance(Object a, Object b) => identical(a, b);
Choose Features