@navios/di 0.4.2 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +211 -1
- package/coverage/clover.xml +1912 -1277
- package/coverage/coverage-final.json +37 -28
- package/coverage/docs/examples/basic-usage.mts.html +1 -1
- package/coverage/docs/examples/factory-pattern.mts.html +1 -1
- package/coverage/docs/examples/index.html +1 -1
- package/coverage/docs/examples/injection-tokens.mts.html +1 -1
- package/coverage/docs/examples/request-scope-example.mts.html +1 -1
- package/coverage/docs/examples/service-lifecycle.mts.html +1 -1
- package/coverage/index.html +71 -41
- package/coverage/lib/_tsup-dts-rollup.d.mts.html +682 -43
- package/coverage/lib/index.d.mts.html +7 -4
- package/coverage/lib/index.html +5 -5
- package/coverage/lib/testing/index.d.mts.html +91 -0
- package/coverage/lib/testing/index.html +116 -0
- package/coverage/src/base-instance-holder-manager.mts.html +589 -0
- package/coverage/src/container.mts.html +257 -74
- package/coverage/src/decorators/factory.decorator.mts.html +1 -1
- package/coverage/src/decorators/index.html +1 -1
- package/coverage/src/decorators/index.mts.html +1 -1
- package/coverage/src/decorators/injectable.decorator.mts.html +20 -20
- package/coverage/src/enums/index.html +1 -1
- package/coverage/src/enums/index.mts.html +1 -1
- package/coverage/src/enums/injectable-scope.enum.mts.html +1 -1
- package/coverage/src/enums/injectable-type.enum.mts.html +1 -1
- package/coverage/src/errors/di-error.mts.html +292 -0
- package/coverage/src/errors/errors.enum.mts.html +30 -21
- package/coverage/src/errors/factory-not-found.mts.html +31 -22
- package/coverage/src/errors/factory-token-not-resolved.mts.html +29 -26
- package/coverage/src/errors/index.html +56 -41
- package/coverage/src/errors/index.mts.html +15 -9
- package/coverage/src/errors/instance-destroying.mts.html +31 -22
- package/coverage/src/errors/instance-expired.mts.html +31 -22
- package/coverage/src/errors/instance-not-found.mts.html +31 -22
- package/coverage/src/errors/unknown-error.mts.html +31 -43
- package/coverage/src/event-emitter.mts.html +14 -14
- package/coverage/src/factory-context.mts.html +1 -1
- package/coverage/src/index.html +121 -46
- package/coverage/src/index.mts.html +7 -4
- package/coverage/src/injection-token.mts.html +28 -28
- package/coverage/src/injector.mts.html +1 -1
- package/coverage/src/instance-resolver.mts.html +1762 -0
- package/coverage/src/interfaces/factory.interface.mts.html +1 -1
- package/coverage/src/interfaces/index.html +1 -1
- package/coverage/src/interfaces/index.mts.html +1 -1
- package/coverage/src/interfaces/on-service-destroy.interface.mts.html +1 -1
- package/coverage/src/interfaces/on-service-init.interface.mts.html +1 -1
- package/coverage/src/registry.mts.html +28 -28
- package/coverage/src/request-context-holder.mts.html +183 -102
- package/coverage/src/request-context-manager.mts.html +532 -0
- package/coverage/src/service-instantiator.mts.html +49 -49
- package/coverage/src/service-invalidator.mts.html +1372 -0
- package/coverage/src/service-locator-event-bus.mts.html +48 -48
- package/coverage/src/service-locator-instance-holder.mts.html +2 -14
- package/coverage/src/service-locator-manager.mts.html +71 -335
- package/coverage/src/service-locator.mts.html +240 -2328
- package/coverage/src/symbols/index.html +1 -1
- package/coverage/src/symbols/index.mts.html +1 -1
- package/coverage/src/symbols/injectable-token.mts.html +1 -1
- package/coverage/src/testing/index.html +131 -0
- package/coverage/src/testing/index.mts.html +88 -0
- package/coverage/src/testing/test-container.mts.html +445 -0
- package/coverage/src/token-processor.mts.html +607 -0
- package/coverage/src/utils/defer.mts.html +28 -214
- package/coverage/src/utils/get-injectable-token.mts.html +7 -7
- package/coverage/src/utils/get-injectors.mts.html +99 -99
- package/coverage/src/utils/index.html +15 -15
- package/coverage/src/utils/index.mts.html +4 -7
- package/coverage/src/utils/types.mts.html +1 -1
- package/docs/injectable.md +51 -11
- package/docs/scopes.md +63 -29
- package/lib/_tsup-dts-rollup.d.mts +376 -213
- package/lib/_tsup-dts-rollup.d.ts +376 -213
- package/lib/{chunk-3NLYPYBY.mjs → chunk-44F3LXW5.mjs} +1021 -605
- package/lib/chunk-44F3LXW5.mjs.map +1 -0
- package/lib/index.d.mts +6 -4
- package/lib/index.d.ts +6 -4
- package/lib/index.js +1192 -776
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +2 -2
- package/lib/testing/index.js +1258 -840
- package/lib/testing/index.js.map +1 -1
- package/lib/testing/index.mjs +1 -1
- package/package.json +1 -1
- package/src/__tests__/container.spec.mts +47 -13
- package/src/__tests__/errors.spec.mts +53 -27
- package/src/__tests__/injectable.spec.mts +73 -0
- package/src/__tests__/request-scope.spec.mts +0 -2
- package/src/__tests__/service-locator-manager.spec.mts +12 -82
- package/src/__tests__/service-locator.spec.mts +1009 -1
- package/src/__type-tests__/inject.spec-d.mts +30 -7
- package/src/__type-tests__/injectable.spec-d.mts +76 -37
- package/src/base-instance-holder-manager.mts +2 -9
- package/src/container.mts +61 -9
- package/src/decorators/injectable.decorator.mts +29 -5
- package/src/errors/di-error.mts +69 -0
- package/src/errors/index.mts +9 -7
- package/src/injection-token.mts +1 -0
- package/src/injector.mts +2 -0
- package/src/instance-resolver.mts +559 -0
- package/src/request-context-holder.mts +0 -2
- package/src/request-context-manager.mts +149 -0
- package/src/service-invalidator.mts +429 -0
- package/src/service-locator-instance-holder.mts +0 -4
- package/src/service-locator-manager.mts +10 -40
- package/src/service-locator.mts +86 -782
- package/src/token-processor.mts +174 -0
- package/src/utils/get-injectors.mts +161 -24
- package/src/utils/index.mts +0 -1
- package/src/utils/types.mts +12 -8
- package/lib/chunk-3NLYPYBY.mjs.map +0 -1
- package/src/__tests__/defer.spec.mts +0 -166
- package/src/errors/errors.enum.mts +0 -8
- package/src/errors/factory-not-found.mts +0 -8
- package/src/errors/factory-token-not-resolved.mts +0 -10
- package/src/errors/instance-destroying.mts +0 -8
- package/src/errors/instance-expired.mts +0 -8
- package/src/errors/instance-not-found.mts +0 -8
- package/src/errors/unknown-error.mts +0 -15
- package/src/utils/defer.mts +0 -73
package/coverage/clover.xml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<coverage generated="
|
|
3
|
-
<project timestamp="
|
|
4
|
-
<metrics statements="
|
|
2
|
+
<coverage generated="1758476827650" clover="3.2.0">
|
|
3
|
+
<project timestamp="1758476827650" name="All files">
|
|
4
|
+
<metrics statements="3093" coveredstatements="1991" conditionals="466" coveredconditionals="423" methods="189" coveredmethods="164" elements="3748" coveredelements="2578" complexity="0" loc="3093" ncloc="3093" packages="11" files="54" classes="54"/>
|
|
5
5
|
<package name="docs.examples">
|
|
6
6
|
<metrics statements="823" coveredstatements="0" conditionals="5" coveredconditionals="0" methods="5" coveredmethods="0"/>
|
|
7
7
|
<file name="basic-usage.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/docs/examples/basic-usage.mts">
|
|
@@ -844,13 +844,13 @@
|
|
|
844
844
|
</file>
|
|
845
845
|
</package>
|
|
846
846
|
<package name="lib">
|
|
847
|
-
<metrics statements="
|
|
847
|
+
<metrics statements="77" coveredstatements="0" conditionals="2" coveredconditionals="0" methods="2" coveredmethods="0"/>
|
|
848
848
|
<file name="_tsup-dts-rollup.d.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/lib/_tsup-dts-rollup.d.mts">
|
|
849
849
|
<metrics statements="1" coveredstatements="0" conditionals="1" coveredconditionals="0" methods="1" coveredmethods="0"/>
|
|
850
850
|
<line num="1" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
851
851
|
</file>
|
|
852
852
|
<file name="index.d.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/lib/index.d.mts">
|
|
853
|
-
<metrics statements="
|
|
853
|
+
<metrics statements="76" coveredstatements="0" conditionals="1" coveredconditionals="0" methods="1" coveredmethods="0"/>
|
|
854
854
|
<line num="1" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
855
855
|
<line num="2" count="0" type="stmt"/>
|
|
856
856
|
<line num="3" count="0" type="stmt"/>
|
|
@@ -926,83 +926,214 @@
|
|
|
926
926
|
<line num="73" count="0" type="stmt"/>
|
|
927
927
|
<line num="74" count="0" type="stmt"/>
|
|
928
928
|
<line num="75" count="0" type="stmt"/>
|
|
929
|
+
<line num="76" count="0" type="stmt"/>
|
|
930
|
+
</file>
|
|
931
|
+
</package>
|
|
932
|
+
<package name="lib.testing">
|
|
933
|
+
<metrics statements="2" coveredstatements="0" conditionals="1" coveredconditionals="0" methods="1" coveredmethods="0"/>
|
|
934
|
+
<file name="index.d.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/lib/testing/index.d.mts">
|
|
935
|
+
<metrics statements="2" coveredstatements="0" conditionals="1" coveredconditionals="0" methods="1" coveredmethods="0"/>
|
|
936
|
+
<line num="1" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
937
|
+
<line num="2" count="0" type="stmt"/>
|
|
929
938
|
</file>
|
|
930
939
|
</package>
|
|
931
940
|
<package name="src">
|
|
932
|
-
<metrics statements="
|
|
941
|
+
<metrics statements="1724" coveredstatements="1545" conditionals="401" coveredconditionals="373" methods="154" coveredmethods="139"/>
|
|
942
|
+
<file name="base-instance-holder-manager.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/src/base-instance-holder-manager.mts">
|
|
943
|
+
<metrics statements="78" coveredstatements="72" conditionals="10" coveredconditionals="10" methods="12" coveredmethods="9"/>
|
|
944
|
+
<line num="3" count="1" type="stmt"/>
|
|
945
|
+
<line num="4" count="1" type="stmt"/>
|
|
946
|
+
<line num="10" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
947
|
+
<line num="11" count="210" type="stmt"/>
|
|
948
|
+
<line num="13" count="210" type="cond" truecount="1" falsecount="0"/>
|
|
949
|
+
<line num="14" count="210" type="stmt"/>
|
|
950
|
+
<line num="15" count="210" type="stmt"/>
|
|
951
|
+
<line num="20" count="210" type="stmt"/>
|
|
952
|
+
<line num="21" count="0" type="stmt"/>
|
|
953
|
+
<line num="22" count="0" type="stmt"/>
|
|
954
|
+
<line num="45" count="210" type="cond" truecount="1" falsecount="0"/>
|
|
955
|
+
<line num="46" count="36" type="stmt"/>
|
|
956
|
+
<line num="47" count="36" type="stmt"/>
|
|
957
|
+
<line num="54" count="210" type="cond" truecount="1" falsecount="0"/>
|
|
958
|
+
<line num="55" count="27" type="stmt"/>
|
|
959
|
+
<line num="59" count="27" type="stmt"/>
|
|
960
|
+
<line num="60" count="27" type="stmt"/>
|
|
961
|
+
<line num="61" count="27" type="cond" truecount="1" falsecount="0"/>
|
|
962
|
+
<line num="62" count="27" type="stmt"/>
|
|
963
|
+
<line num="63" count="27" type="stmt"/>
|
|
964
|
+
<line num="68" count="210" type="cond" truecount="1" falsecount="0"/>
|
|
965
|
+
<line num="69" count="29" type="stmt"/>
|
|
966
|
+
<line num="70" count="29" type="stmt"/>
|
|
967
|
+
<line num="75" count="210" type="cond" truecount="1" falsecount="0"/>
|
|
968
|
+
<line num="76" count="10" type="stmt"/>
|
|
969
|
+
<line num="77" count="10" type="stmt"/>
|
|
970
|
+
<line num="88" count="210" type="cond" truecount="1" falsecount="0"/>
|
|
971
|
+
<line num="89" count="298" type="stmt"/>
|
|
972
|
+
<line num="90" count="298" type="stmt"/>
|
|
973
|
+
<line num="91" count="298" type="stmt"/>
|
|
974
|
+
<line num="92" count="298" type="stmt"/>
|
|
975
|
+
<line num="96" count="298" type="stmt"/>
|
|
976
|
+
<line num="97" count="298" type="stmt"/>
|
|
977
|
+
<line num="99" count="298" type="stmt"/>
|
|
978
|
+
<line num="100" count="298" type="stmt"/>
|
|
979
|
+
<line num="101" count="298" type="stmt"/>
|
|
980
|
+
<line num="102" count="298" type="stmt"/>
|
|
981
|
+
<line num="103" count="298" type="stmt"/>
|
|
982
|
+
<line num="104" count="298" type="stmt"/>
|
|
983
|
+
<line num="105" count="298" type="stmt"/>
|
|
984
|
+
<line num="106" count="298" type="stmt"/>
|
|
985
|
+
<line num="107" count="298" type="stmt"/>
|
|
986
|
+
<line num="108" count="298" type="stmt"/>
|
|
987
|
+
<line num="109" count="298" type="stmt"/>
|
|
988
|
+
<line num="110" count="298" type="stmt"/>
|
|
989
|
+
<line num="112" count="298" type="stmt"/>
|
|
990
|
+
<line num="113" count="298" type="stmt"/>
|
|
991
|
+
<line num="125" count="210" type="cond" truecount="1" falsecount="0"/>
|
|
992
|
+
<line num="126" count="149" type="stmt"/>
|
|
993
|
+
<line num="127" count="149" type="stmt"/>
|
|
994
|
+
<line num="128" count="149" type="stmt"/>
|
|
995
|
+
<line num="129" count="149" type="stmt"/>
|
|
996
|
+
<line num="130" count="149" type="stmt"/>
|
|
997
|
+
<line num="131" count="149" type="stmt"/>
|
|
998
|
+
<line num="132" count="149" type="stmt"/>
|
|
999
|
+
<line num="133" count="149" type="stmt"/>
|
|
1000
|
+
<line num="134" count="149" type="stmt"/>
|
|
1001
|
+
<line num="135" count="149" type="stmt"/>
|
|
1002
|
+
<line num="136" count="149" type="stmt"/>
|
|
1003
|
+
<line num="137" count="149" type="stmt"/>
|
|
1004
|
+
<line num="138" count="149" type="stmt"/>
|
|
1005
|
+
<line num="139" count="149" type="stmt"/>
|
|
1006
|
+
<line num="140" count="149" type="stmt"/>
|
|
1007
|
+
<line num="141" count="149" type="stmt"/>
|
|
1008
|
+
<line num="142" count="149" type="stmt"/>
|
|
1009
|
+
<line num="143" count="149" type="stmt"/>
|
|
1010
|
+
<line num="145" count="149" type="stmt"/>
|
|
1011
|
+
<line num="146" count="149" type="stmt"/>
|
|
1012
|
+
<line num="151" count="210" type="cond" truecount="1" falsecount="0"/>
|
|
1013
|
+
<line num="152" count="10" type="stmt"/>
|
|
1014
|
+
<line num="153" count="10" type="stmt"/>
|
|
1015
|
+
<line num="158" count="210" type="stmt"/>
|
|
1016
|
+
<line num="159" count="0" type="stmt"/>
|
|
1017
|
+
<line num="160" count="0" type="stmt"/>
|
|
1018
|
+
<line num="165" count="210" type="stmt"/>
|
|
1019
|
+
<line num="166" count="0" type="stmt"/>
|
|
1020
|
+
<line num="167" count="0" type="stmt"/>
|
|
1021
|
+
<line num="168" count="210" type="stmt"/>
|
|
1022
|
+
</file>
|
|
933
1023
|
<file name="container.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/src/container.mts">
|
|
934
|
-
<metrics statements="
|
|
1024
|
+
<metrics statements="112" coveredstatements="103" conditionals="22" coveredconditionals="21" methods="16" coveredmethods="14"/>
|
|
935
1025
|
<line num="1" count="1" type="stmt"/>
|
|
936
|
-
<line num="16" count="1" type="stmt"/>
|
|
937
1026
|
<line num="17" count="1" type="stmt"/>
|
|
938
1027
|
<line num="18" count="1" type="stmt"/>
|
|
939
1028
|
<line num="19" count="1" type="stmt"/>
|
|
940
1029
|
<line num="20" count="1" type="stmt"/>
|
|
941
1030
|
<line num="21" count="1" type="stmt"/>
|
|
942
|
-
<line num="
|
|
943
|
-
<line num="28" count="1" type="
|
|
944
|
-
<line num="29" count="
|
|
945
|
-
<line num="
|
|
946
|
-
<line num="32" count="
|
|
947
|
-
<line num="33" count="
|
|
948
|
-
<line num="34" count="
|
|
949
|
-
<line num="35" count="
|
|
950
|
-
<line num="36" count="
|
|
951
|
-
<line num="37" count="
|
|
952
|
-
<line num="38" count="
|
|
953
|
-
<line num="
|
|
954
|
-
<line num="41" count="
|
|
955
|
-
<line num="42" count="
|
|
956
|
-
<line num="43" count="
|
|
957
|
-
<line num="44" count="
|
|
958
|
-
<line num="45" count="
|
|
959
|
-
<line num="46" count="
|
|
960
|
-
<line num="47" count="
|
|
961
|
-
<line num="48" count="
|
|
962
|
-
<line num="49" count="
|
|
963
|
-
<line num="50" count="
|
|
964
|
-
<line num="51" count="
|
|
965
|
-
<line num="
|
|
966
|
-
<line num="85" count="
|
|
967
|
-
<line num="
|
|
968
|
-
<line num="91" count="
|
|
969
|
-
<line num="92" count="
|
|
970
|
-
<line num="93" count="
|
|
971
|
-
<line num="
|
|
972
|
-
<line num="99" count="
|
|
973
|
-
<line num="100" count="
|
|
974
|
-
<line num="
|
|
975
|
-
<line num="106" count="
|
|
976
|
-
<line num="107" count="
|
|
977
|
-
<line num="108" count="
|
|
978
|
-
<line num="109" count="
|
|
979
|
-
<line num="110" count="
|
|
980
|
-
<line num="111" count="
|
|
981
|
-
<line num="112" count="
|
|
982
|
-
<line num="113" count="
|
|
983
|
-
<line num="114" count="
|
|
984
|
-
<line num="115" count="
|
|
985
|
-
<line num="116" count="
|
|
986
|
-
<line num="
|
|
987
|
-
<line num="122" count="
|
|
988
|
-
<line num="123" count="
|
|
989
|
-
<line num="
|
|
990
|
-
<line num="
|
|
991
|
-
<line num="
|
|
992
|
-
<line num="
|
|
993
|
-
<line num="
|
|
994
|
-
<line num="
|
|
995
|
-
<line num="
|
|
996
|
-
<line num="
|
|
997
|
-
<line num="
|
|
998
|
-
<line num="
|
|
999
|
-
<line num="
|
|
1000
|
-
<line num="
|
|
1001
|
-
<line num="
|
|
1002
|
-
<line num="
|
|
1003
|
-
<line num="
|
|
1004
|
-
<line num="
|
|
1005
|
-
<line num="
|
|
1031
|
+
<line num="22" count="1" type="stmt"/>
|
|
1032
|
+
<line num="28" count="1" type="stmt"/>
|
|
1033
|
+
<line num="29" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1034
|
+
<line num="30" count="119" type="stmt"/>
|
|
1035
|
+
<line num="32" count="119" type="cond" truecount="1" falsecount="0"/>
|
|
1036
|
+
<line num="33" count="119" type="stmt"/>
|
|
1037
|
+
<line num="34" count="119" type="stmt"/>
|
|
1038
|
+
<line num="35" count="119" type="stmt"/>
|
|
1039
|
+
<line num="36" count="119" type="stmt"/>
|
|
1040
|
+
<line num="37" count="119" type="stmt"/>
|
|
1041
|
+
<line num="38" count="119" type="stmt"/>
|
|
1042
|
+
<line num="39" count="119" type="stmt"/>
|
|
1043
|
+
<line num="41" count="119" type="cond" truecount="1" falsecount="0"/>
|
|
1044
|
+
<line num="42" count="119" type="stmt"/>
|
|
1045
|
+
<line num="43" count="119" type="stmt"/>
|
|
1046
|
+
<line num="44" count="119" type="stmt"/>
|
|
1047
|
+
<line num="45" count="119" type="stmt"/>
|
|
1048
|
+
<line num="46" count="119" type="stmt"/>
|
|
1049
|
+
<line num="47" count="119" type="stmt"/>
|
|
1050
|
+
<line num="48" count="119" type="stmt"/>
|
|
1051
|
+
<line num="49" count="119" type="stmt"/>
|
|
1052
|
+
<line num="50" count="119" type="stmt"/>
|
|
1053
|
+
<line num="51" count="119" type="stmt"/>
|
|
1054
|
+
<line num="52" count="119" type="stmt"/>
|
|
1055
|
+
<line num="85" count="119" type="cond" truecount="1" falsecount="0"/>
|
|
1056
|
+
<line num="86" count="235" type="stmt"/>
|
|
1057
|
+
<line num="91" count="235" type="stmt"/>
|
|
1058
|
+
<line num="92" count="235" type="stmt"/>
|
|
1059
|
+
<line num="93" count="235" type="stmt"/>
|
|
1060
|
+
<line num="94" count="235" type="stmt"/>
|
|
1061
|
+
<line num="99" count="119" type="cond" truecount="1" falsecount="0"/>
|
|
1062
|
+
<line num="100" count="13" type="stmt"/>
|
|
1063
|
+
<line num="101" count="13" type="stmt"/>
|
|
1064
|
+
<line num="106" count="119" type="cond" truecount="1" falsecount="0"/>
|
|
1065
|
+
<line num="107" count="12" type="stmt"/>
|
|
1066
|
+
<line num="108" count="12" type="cond" truecount="1" falsecount="0"/>
|
|
1067
|
+
<line num="109" count="10" type="stmt"/>
|
|
1068
|
+
<line num="110" count="10" type="stmt"/>
|
|
1069
|
+
<line num="111" count="12" type="cond" truecount="1" falsecount="0"/>
|
|
1070
|
+
<line num="112" count="2" type="stmt"/>
|
|
1071
|
+
<line num="113" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
1072
|
+
<line num="114" count="1" type="stmt"/>
|
|
1073
|
+
<line num="115" count="1" type="stmt"/>
|
|
1074
|
+
<line num="116" count="2" type="stmt"/>
|
|
1075
|
+
<line num="117" count="12" type="stmt"/>
|
|
1076
|
+
<line num="122" count="119" type="cond" truecount="1" falsecount="0"/>
|
|
1077
|
+
<line num="123" count="12" type="stmt"/>
|
|
1078
|
+
<line num="124" count="12" type="stmt"/>
|
|
1079
|
+
<line num="125" count="12" type="stmt"/>
|
|
1080
|
+
<line num="126" count="12" type="stmt"/>
|
|
1081
|
+
<line num="127" count="12" type="stmt"/>
|
|
1082
|
+
<line num="128" count="12" type="cond" truecount="1" falsecount="0"/>
|
|
1083
|
+
<line num="129" count="12" type="stmt"/>
|
|
1084
|
+
<line num="130" count="12" type="stmt"/>
|
|
1085
|
+
<line num="132" count="12" type="cond" truecount="2" falsecount="0"/>
|
|
1086
|
+
<line num="133" count="12" type="stmt"/>
|
|
1087
|
+
<line num="135" count="119" type="cond" truecount="1" falsecount="0"/>
|
|
1088
|
+
<line num="136" count="2" type="stmt"/>
|
|
1089
|
+
<line num="137" count="2" type="stmt"/>
|
|
1090
|
+
<line num="138" count="2" type="stmt"/>
|
|
1091
|
+
<line num="139" count="2" type="stmt"/>
|
|
1092
|
+
<line num="140" count="2" type="stmt"/>
|
|
1093
|
+
<line num="141" count="2" type="stmt"/>
|
|
1094
|
+
<line num="142" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
1095
|
+
<line num="143" count="1" type="stmt"/>
|
|
1096
|
+
<line num="144" count="1" type="stmt"/>
|
|
1097
|
+
<line num="145" count="1" type="stmt"/>
|
|
1098
|
+
<line num="146" count="1" type="stmt"/>
|
|
1099
|
+
<line num="147" count="1" type="cond" truecount="0" falsecount="1"/>
|
|
1100
|
+
<line num="148" count="0" type="stmt"/>
|
|
1101
|
+
<line num="149" count="1" type="stmt"/>
|
|
1102
|
+
<line num="150" count="1" type="stmt"/>
|
|
1103
|
+
<line num="151" count="2" type="stmt"/>
|
|
1104
|
+
<line num="156" count="119" type="stmt"/>
|
|
1105
|
+
<line num="157" count="0" type="stmt"/>
|
|
1106
|
+
<line num="158" count="0" type="stmt"/>
|
|
1107
|
+
<line num="159" count="0" type="stmt"/>
|
|
1108
|
+
<line num="160" count="0" type="stmt"/>
|
|
1109
|
+
<line num="161" count="0" type="stmt"/>
|
|
1110
|
+
<line num="162" count="0" type="stmt"/>
|
|
1111
|
+
<line num="167" count="119" type="stmt"/>
|
|
1112
|
+
<line num="168" count="0" type="stmt"/>
|
|
1113
|
+
<line num="169" count="0" type="stmt"/>
|
|
1114
|
+
<line num="174" count="119" type="cond" truecount="1" falsecount="0"/>
|
|
1115
|
+
<line num="175" count="1" type="stmt"/>
|
|
1116
|
+
<line num="176" count="1" type="stmt"/>
|
|
1117
|
+
<line num="189" count="119" type="cond" truecount="1" falsecount="0"/>
|
|
1118
|
+
<line num="190" count="12" type="stmt"/>
|
|
1119
|
+
<line num="191" count="12" type="stmt"/>
|
|
1120
|
+
<line num="192" count="12" type="stmt"/>
|
|
1121
|
+
<line num="193" count="12" type="stmt"/>
|
|
1122
|
+
<line num="194" count="12" type="stmt"/>
|
|
1123
|
+
<line num="195" count="12" type="stmt"/>
|
|
1124
|
+
<line num="201" count="119" type="cond" truecount="1" falsecount="0"/>
|
|
1125
|
+
<line num="202" count="12" type="stmt"/>
|
|
1126
|
+
<line num="203" count="12" type="stmt"/>
|
|
1127
|
+
<line num="209" count="119" type="cond" truecount="1" falsecount="0"/>
|
|
1128
|
+
<line num="210" count="1" type="stmt"/>
|
|
1129
|
+
<line num="211" count="1" type="stmt"/>
|
|
1130
|
+
<line num="217" count="119" type="cond" truecount="1" falsecount="0"/>
|
|
1131
|
+
<line num="218" count="3" type="stmt"/>
|
|
1132
|
+
<line num="219" count="3" type="stmt"/>
|
|
1133
|
+
<line num="225" count="119" type="cond" truecount="1" falsecount="0"/>
|
|
1134
|
+
<line num="226" count="1" type="stmt"/>
|
|
1135
|
+
<line num="227" count="1" type="stmt"/>
|
|
1136
|
+
<line num="228" count="119" type="stmt"/>
|
|
1006
1137
|
</file>
|
|
1007
1138
|
<file name="event-emitter.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/src/event-emitter.mts">
|
|
1008
1139
|
<metrics statements="54" coveredstatements="54" conditionals="14" coveredconditionals="14" methods="5" coveredmethods="5"/>
|
|
@@ -1025,17 +1156,17 @@
|
|
|
1025
1156
|
<line num="61" count="3" type="stmt"/>
|
|
1026
1157
|
<line num="62" count="14" type="stmt"/>
|
|
1027
1158
|
<line num="64" count="14" type="cond" truecount="1" falsecount="0"/>
|
|
1028
|
-
<line num="65" count="
|
|
1029
|
-
<line num="66" count="
|
|
1030
|
-
<line num="67" count="
|
|
1031
|
-
<line num="68" count="
|
|
1159
|
+
<line num="65" count="8" type="stmt"/>
|
|
1160
|
+
<line num="66" count="8" type="stmt"/>
|
|
1161
|
+
<line num="67" count="8" type="stmt"/>
|
|
1162
|
+
<line num="68" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
1032
1163
|
<line num="69" count="1" type="stmt"/>
|
|
1033
1164
|
<line num="70" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1034
|
-
<line num="72" count="
|
|
1035
|
-
<line num="73" count="
|
|
1036
|
-
<line num="74" count="
|
|
1037
|
-
<line num="75" count="
|
|
1038
|
-
<line num="76" count="
|
|
1165
|
+
<line num="72" count="7" type="stmt"/>
|
|
1166
|
+
<line num="73" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
1167
|
+
<line num="74" count="6" type="stmt"/>
|
|
1168
|
+
<line num="75" count="6" type="stmt"/>
|
|
1169
|
+
<line num="76" count="8" type="stmt"/>
|
|
1039
1170
|
<line num="78" count="14" type="cond" truecount="1" falsecount="0"/>
|
|
1040
1171
|
<line num="79" count="2" type="stmt"/>
|
|
1041
1172
|
<line num="80" count="2" type="stmt"/>
|
|
@@ -1065,7 +1196,7 @@
|
|
|
1065
1196
|
<metrics statements="0" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
1066
1197
|
</file>
|
|
1067
1198
|
<file name="index.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/src/index.mts">
|
|
1068
|
-
<metrics statements="
|
|
1199
|
+
<metrics statements="19" coveredstatements="19" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
1069
1200
|
<line num="1" count="1" type="stmt"/>
|
|
1070
1201
|
<line num="2" count="1" type="stmt"/>
|
|
1071
1202
|
<line num="3" count="1" type="stmt"/>
|
|
@@ -1084,53 +1215,54 @@
|
|
|
1084
1215
|
<line num="16" count="1" type="stmt"/>
|
|
1085
1216
|
<line num="17" count="1" type="stmt"/>
|
|
1086
1217
|
<line num="18" count="1" type="stmt"/>
|
|
1218
|
+
<line num="19" count="1" type="stmt"/>
|
|
1087
1219
|
</file>
|
|
1088
1220
|
<file name="injection-token.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/src/injection-token.mts">
|
|
1089
1221
|
<metrics statements="85" coveredstatements="81" conditionals="25" coveredconditionals="25" methods="14" coveredmethods="13"/>
|
|
1090
1222
|
<line num="25" count="1" type="stmt"/>
|
|
1091
1223
|
<line num="39" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1092
|
-
<line num="40" count="
|
|
1093
|
-
<line num="41" count="
|
|
1094
|
-
<line num="43" count="
|
|
1095
|
-
<line num="44" count="
|
|
1096
|
-
<line num="45" count="
|
|
1097
|
-
<line num="46" count="
|
|
1098
|
-
<line num="62" count="
|
|
1099
|
-
<line num="64" count="
|
|
1100
|
-
<line num="65" count="
|
|
1101
|
-
<line num="67" count="
|
|
1224
|
+
<line num="40" count="357" type="stmt"/>
|
|
1225
|
+
<line num="41" count="357" type="stmt"/>
|
|
1226
|
+
<line num="43" count="357" type="cond" truecount="1" falsecount="0"/>
|
|
1227
|
+
<line num="44" count="357" type="stmt"/>
|
|
1228
|
+
<line num="45" count="357" type="stmt"/>
|
|
1229
|
+
<line num="46" count="357" type="stmt"/>
|
|
1230
|
+
<line num="62" count="357" type="cond" truecount="1" falsecount="0"/>
|
|
1231
|
+
<line num="64" count="314" type="stmt"/>
|
|
1232
|
+
<line num="65" count="314" type="stmt"/>
|
|
1233
|
+
<line num="67" count="357" type="cond" truecount="1" falsecount="0"/>
|
|
1102
1234
|
<line num="68" count="8" type="stmt"/>
|
|
1103
1235
|
<line num="69" count="8" type="stmt"/>
|
|
1104
1236
|
<line num="70" count="8" type="stmt"/>
|
|
1105
1237
|
<line num="71" count="8" type="stmt"/>
|
|
1106
1238
|
<line num="72" count="8" type="stmt"/>
|
|
1107
|
-
<line num="74" count="
|
|
1239
|
+
<line num="74" count="357" type="cond" truecount="1" falsecount="0"/>
|
|
1108
1240
|
<line num="75" count="19" type="stmt"/>
|
|
1109
1241
|
<line num="76" count="19" type="stmt"/>
|
|
1110
1242
|
<line num="77" count="19" type="stmt"/>
|
|
1111
1243
|
<line num="78" count="19" type="stmt"/>
|
|
1112
1244
|
<line num="79" count="19" type="stmt"/>
|
|
1113
|
-
<line num="81" count="
|
|
1245
|
+
<line num="81" count="357" type="stmt"/>
|
|
1114
1246
|
<line num="82" count="0" type="stmt"/>
|
|
1115
1247
|
<line num="83" count="0" type="stmt"/>
|
|
1116
1248
|
<line num="84" count="0" type="stmt"/>
|
|
1117
1249
|
<line num="85" count="0" type="stmt"/>
|
|
1118
|
-
<line num="87" count="
|
|
1119
|
-
<line num="88" count="
|
|
1120
|
-
<line num="89" count="
|
|
1121
|
-
<line num="90" count="
|
|
1122
|
-
<line num="91" count="
|
|
1123
|
-
<line num="92" count="
|
|
1124
|
-
<line num="93" count="
|
|
1125
|
-
<line num="94" count="
|
|
1126
|
-
<line num="95" count="
|
|
1250
|
+
<line num="87" count="357" type="cond" truecount="1" falsecount="0"/>
|
|
1251
|
+
<line num="88" count="657" type="cond" truecount="2" falsecount="0"/>
|
|
1252
|
+
<line num="89" count="379" type="stmt"/>
|
|
1253
|
+
<line num="90" count="379" type="cond" truecount="1" falsecount="0"/>
|
|
1254
|
+
<line num="91" count="278" type="stmt"/>
|
|
1255
|
+
<line num="92" count="657" type="cond" truecount="2" falsecount="0"/>
|
|
1256
|
+
<line num="93" count="218" type="stmt"/>
|
|
1257
|
+
<line num="94" count="218" type="stmt"/>
|
|
1258
|
+
<line num="95" count="587" type="cond" truecount="2" falsecount="0"/>
|
|
1127
1259
|
<line num="96" count="3" type="stmt"/>
|
|
1128
|
-
<line num="97" count="
|
|
1129
|
-
<line num="98" count="
|
|
1130
|
-
<line num="99" count="
|
|
1131
|
-
<line num="101" count="
|
|
1132
|
-
<line num="102" count="
|
|
1133
|
-
<line num="103" count="
|
|
1260
|
+
<line num="97" count="60" type="cond" truecount="1" falsecount="0"/>
|
|
1261
|
+
<line num="98" count="57" type="stmt"/>
|
|
1262
|
+
<line num="99" count="57" type="cond" truecount="1" falsecount="0"/>
|
|
1263
|
+
<line num="101" count="278" type="stmt"/>
|
|
1264
|
+
<line num="102" count="657" type="stmt"/>
|
|
1265
|
+
<line num="103" count="357" type="stmt"/>
|
|
1134
1266
|
<line num="105" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1135
1267
|
<line num="106" count="8" type="stmt"/>
|
|
1136
1268
|
<line num="107" count="8" type="stmt"/>
|
|
@@ -1185,124 +1317,596 @@
|
|
|
1185
1317
|
<line num="15" count="1" type="stmt"/>
|
|
1186
1318
|
<line num="16" count="1" type="stmt"/>
|
|
1187
1319
|
</file>
|
|
1320
|
+
<file name="instance-resolver.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/src/instance-resolver.mts">
|
|
1321
|
+
<metrics statements="376" coveredstatements="354" conditionals="87" coveredconditionals="79" methods="16" coveredmethods="16"/>
|
|
1322
|
+
<line num="21" count="1" type="stmt"/>
|
|
1323
|
+
<line num="22" count="1" type="stmt"/>
|
|
1324
|
+
<line num="23" count="1" type="stmt"/>
|
|
1325
|
+
<line num="28" count="1" type="stmt"/>
|
|
1326
|
+
<line num="34" count="1" type="stmt"/>
|
|
1327
|
+
<line num="35" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1328
|
+
<line num="36" count="143" type="stmt"/>
|
|
1329
|
+
<line num="37" count="143" type="stmt"/>
|
|
1330
|
+
<line num="38" count="143" type="stmt"/>
|
|
1331
|
+
<line num="39" count="143" type="stmt"/>
|
|
1332
|
+
<line num="40" count="143" type="stmt"/>
|
|
1333
|
+
<line num="41" count="143" type="stmt"/>
|
|
1334
|
+
<line num="42" count="143" type="stmt"/>
|
|
1335
|
+
<line num="47" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1336
|
+
<line num="48" count="337" type="stmt"/>
|
|
1337
|
+
<line num="49" count="337" type="stmt"/>
|
|
1338
|
+
<line num="50" count="337" type="stmt"/>
|
|
1339
|
+
<line num="51" count="337" type="stmt"/>
|
|
1340
|
+
<line num="52" count="337" type="stmt"/>
|
|
1341
|
+
<line num="53" count="337" type="stmt"/>
|
|
1342
|
+
<line num="54" count="337" type="stmt"/>
|
|
1343
|
+
<line num="55" count="337" type="cond" truecount="1" falsecount="0"/>
|
|
1344
|
+
<line num="56" count="337" type="cond" truecount="1" falsecount="0"/>
|
|
1345
|
+
<line num="57" count="3" type="stmt"/>
|
|
1346
|
+
<line num="58" count="3" type="cond" truecount="2" falsecount="0"/>
|
|
1347
|
+
<line num="60" count="331" type="stmt"/>
|
|
1348
|
+
<line num="61" count="331" type="stmt"/>
|
|
1349
|
+
<line num="62" count="331" type="stmt"/>
|
|
1350
|
+
<line num="63" count="331" type="stmt"/>
|
|
1351
|
+
<line num="64" count="331" type="stmt"/>
|
|
1352
|
+
<line num="65" count="331" type="stmt"/>
|
|
1353
|
+
<line num="67" count="331" type="stmt"/>
|
|
1354
|
+
<line num="68" count="331" type="stmt"/>
|
|
1355
|
+
<line num="69" count="331" type="stmt"/>
|
|
1356
|
+
<line num="70" count="331" type="stmt"/>
|
|
1357
|
+
<line num="71" count="331" type="stmt"/>
|
|
1358
|
+
<line num="72" count="331" type="cond" truecount="1" falsecount="0"/>
|
|
1359
|
+
<line num="73" count="337" type="cond" truecount="1" falsecount="0"/>
|
|
1360
|
+
<line num="74" count="2" type="stmt"/>
|
|
1361
|
+
<line num="75" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
1362
|
+
<line num="76" count="326" type="stmt"/>
|
|
1363
|
+
<line num="77" count="337" type="stmt"/>
|
|
1364
|
+
<line num="82" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1365
|
+
<line num="86" count="99" type="stmt"/>
|
|
1366
|
+
<line num="87" count="99" type="stmt"/>
|
|
1367
|
+
<line num="92" count="99" type="stmt"/>
|
|
1368
|
+
<line num="93" count="99" type="stmt"/>
|
|
1369
|
+
<line num="94" count="99" type="stmt"/>
|
|
1370
|
+
<line num="95" count="99" type="stmt"/>
|
|
1371
|
+
<line num="96" count="99" type="cond" truecount="0" falsecount="1"/>
|
|
1372
|
+
<line num="97" count="0" type="stmt"/>
|
|
1373
|
+
<line num="98" count="0" type="cond" truecount="1" falsecount="0"/>
|
|
1374
|
+
<line num="99" count="98" type="stmt"/>
|
|
1375
|
+
<line num="100" count="98" type="stmt"/>
|
|
1376
|
+
<line num="101" count="98" type="stmt"/>
|
|
1377
|
+
<line num="102" count="98" type="stmt"/>
|
|
1378
|
+
<line num="105" count="99" type="cond" truecount="1" falsecount="0"/>
|
|
1379
|
+
<line num="106" count="35" type="stmt"/>
|
|
1380
|
+
<line num="107" count="35" type="cond" truecount="1" falsecount="0"/>
|
|
1381
|
+
<line num="108" count="9" type="stmt"/>
|
|
1382
|
+
<line num="109" count="9" type="stmt"/>
|
|
1383
|
+
<line num="110" count="35" type="cond" truecount="1" falsecount="0"/>
|
|
1384
|
+
<line num="113" count="89" type="stmt"/>
|
|
1385
|
+
<line num="114" count="99" type="cond" truecount="2" falsecount="0"/>
|
|
1386
|
+
<line num="115" count="43" type="stmt"/>
|
|
1387
|
+
<line num="116" count="43" type="cond" truecount="1" falsecount="0"/>
|
|
1388
|
+
<line num="117" count="46" type="stmt"/>
|
|
1389
|
+
<line num="118" count="99" type="stmt"/>
|
|
1390
|
+
<line num="124" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1391
|
+
<line num="125" count="351" type="stmt"/>
|
|
1392
|
+
<line num="126" count="351" type="stmt"/>
|
|
1393
|
+
<line num="138" count="351" type="stmt"/>
|
|
1394
|
+
<line num="139" count="351" type="stmt"/>
|
|
1395
|
+
<line num="140" count="351" type="stmt"/>
|
|
1396
|
+
<line num="141" count="351" type="cond" truecount="2" falsecount="0"/>
|
|
1397
|
+
<line num="142" count="3" type="stmt"/>
|
|
1398
|
+
<line num="143" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
1399
|
+
<line num="144" count="347" type="cond" truecount="1" falsecount="0"/>
|
|
1400
|
+
<line num="145" count="16" type="cond" truecount="1" falsecount="0"/>
|
|
1401
|
+
<line num="146" count="16" type="stmt"/>
|
|
1402
|
+
<line num="147" count="347" type="cond" truecount="1" falsecount="0"/>
|
|
1403
|
+
<line num="148" count="16" type="cond" truecount="1" falsecount="0"/>
|
|
1404
|
+
<line num="149" count="16" type="stmt"/>
|
|
1405
|
+
<line num="150" count="16" type="stmt"/>
|
|
1406
|
+
<line num="151" count="16" type="cond" truecount="1" falsecount="0"/>
|
|
1407
|
+
<line num="152" count="14" type="stmt"/>
|
|
1408
|
+
<line num="153" count="14" type="cond" truecount="1" falsecount="0"/>
|
|
1409
|
+
<line num="154" count="331" type="stmt"/>
|
|
1410
|
+
<line num="155" count="331" type="stmt"/>
|
|
1411
|
+
<line num="156" count="331" type="stmt"/>
|
|
1412
|
+
<line num="157" count="331" type="stmt"/>
|
|
1413
|
+
<line num="159" count="331" type="stmt"/>
|
|
1414
|
+
<line num="160" count="331" type="cond" truecount="1" falsecount="0"/>
|
|
1415
|
+
<line num="161" count="325" type="cond" truecount="1" falsecount="0"/>
|
|
1416
|
+
<line num="162" count="22" type="cond" truecount="1" falsecount="0"/>
|
|
1417
|
+
<line num="163" count="309" type="stmt"/>
|
|
1418
|
+
<line num="164" count="351" type="stmt"/>
|
|
1419
|
+
<line num="165" count="351" type="stmt"/>
|
|
1420
|
+
<line num="170" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1421
|
+
<line num="171" count="331" type="stmt"/>
|
|
1422
|
+
<line num="172" count="331" type="stmt"/>
|
|
1423
|
+
<line num="173" count="331" type="stmt"/>
|
|
1424
|
+
<line num="174" count="331" type="stmt"/>
|
|
1425
|
+
<line num="175" count="331" type="stmt"/>
|
|
1426
|
+
<line num="177" count="331" type="stmt"/>
|
|
1427
|
+
<line num="178" count="331" type="stmt"/>
|
|
1428
|
+
<line num="179" count="331" type="stmt"/>
|
|
1429
|
+
<line num="180" count="331" type="stmt"/>
|
|
1430
|
+
<line num="181" count="331" type="stmt"/>
|
|
1431
|
+
<line num="182" count="331" type="cond" truecount="1" falsecount="0"/>
|
|
1432
|
+
<line num="183" count="38" type="stmt"/>
|
|
1433
|
+
<line num="184" count="38" type="cond" truecount="1" falsecount="0"/>
|
|
1434
|
+
<line num="187" count="293" type="stmt"/>
|
|
1435
|
+
<line num="188" count="293" type="stmt"/>
|
|
1436
|
+
<line num="189" count="293" type="stmt"/>
|
|
1437
|
+
<line num="190" count="293" type="stmt"/>
|
|
1438
|
+
<line num="191" count="293" type="stmt"/>
|
|
1439
|
+
<line num="192" count="293" type="stmt"/>
|
|
1440
|
+
<line num="193" count="331" type="cond" truecount="0" falsecount="1"/>
|
|
1441
|
+
<line num="194" count="0" type="stmt"/>
|
|
1442
|
+
<line num="195" count="0" type="cond" truecount="1" falsecount="0"/>
|
|
1443
|
+
<line num="197" count="293" type="stmt"/>
|
|
1444
|
+
<line num="198" count="293" type="stmt"/>
|
|
1445
|
+
<line num="199" count="331" type="stmt"/>
|
|
1446
|
+
<line num="205" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1447
|
+
<line num="206" count="331" type="stmt"/>
|
|
1448
|
+
<line num="207" count="331" type="stmt"/>
|
|
1449
|
+
<line num="208" count="331" type="stmt"/>
|
|
1450
|
+
<line num="211" count="331" type="stmt"/>
|
|
1451
|
+
<line num="213" count="331" type="stmt"/>
|
|
1452
|
+
<line num="214" count="331" type="stmt"/>
|
|
1453
|
+
<line num="215" count="331" type="stmt"/>
|
|
1454
|
+
<line num="216" count="331" type="stmt"/>
|
|
1455
|
+
<line num="217" count="331" type="stmt"/>
|
|
1456
|
+
<line num="218" count="331" type="cond" truecount="1" falsecount="0"/>
|
|
1457
|
+
<line num="219" count="8" type="stmt"/>
|
|
1458
|
+
<line num="220" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
1459
|
+
<line num="223" count="323" type="stmt"/>
|
|
1460
|
+
<line num="224" count="331" type="stmt"/>
|
|
1461
|
+
<line num="229" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1462
|
+
<line num="230" count="331" type="stmt"/>
|
|
1463
|
+
<line num="231" count="331" type="stmt"/>
|
|
1464
|
+
<line num="232" count="331" type="stmt"/>
|
|
1465
|
+
<line num="235" count="331" type="stmt"/>
|
|
1466
|
+
<line num="236" count="331" type="cond" truecount="1" falsecount="0"/>
|
|
1467
|
+
<line num="237" count="5" type="stmt"/>
|
|
1468
|
+
<line num="238" count="5" type="cond" truecount="2" falsecount="0"/>
|
|
1469
|
+
<line num="240" count="326" type="stmt"/>
|
|
1470
|
+
<line num="241" count="328" type="cond" truecount="1" falsecount="0"/>
|
|
1471
|
+
<line num="242" count="291" type="stmt"/>
|
|
1472
|
+
<line num="243" count="291" type="cond" truecount="2" falsecount="0"/>
|
|
1473
|
+
<line num="245" count="278" type="cond" truecount="1" falsecount="0"/>
|
|
1474
|
+
<line num="246" count="2" type="stmt"/>
|
|
1475
|
+
<line num="247" count="2" type="stmt"/>
|
|
1476
|
+
<line num="248" count="2" type="stmt"/>
|
|
1477
|
+
<line num="249" count="2" type="stmt"/>
|
|
1478
|
+
<line num="250" count="2" type="stmt"/>
|
|
1479
|
+
<line num="251" count="2" type="stmt"/>
|
|
1480
|
+
<line num="252" count="2" type="stmt"/>
|
|
1481
|
+
<line num="253" count="2" type="stmt"/>
|
|
1482
|
+
<line num="254" count="2" type="cond" truecount="2" falsecount="0"/>
|
|
1483
|
+
<line num="256" count="33" type="stmt"/>
|
|
1484
|
+
<line num="257" count="79" type="cond" truecount="1" falsecount="0"/>
|
|
1485
|
+
<line num="258" count="27" type="stmt"/>
|
|
1486
|
+
<line num="259" count="27" type="cond" truecount="1" falsecount="0"/>
|
|
1487
|
+
<line num="261" count="6" type="stmt"/>
|
|
1488
|
+
<line num="262" count="331" type="stmt"/>
|
|
1489
|
+
<line num="267" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1490
|
+
<line num="268" count="323" type="stmt"/>
|
|
1491
|
+
<line num="271" count="323" type="stmt"/>
|
|
1492
|
+
<line num="272" count="323" type="stmt"/>
|
|
1493
|
+
<line num="274" count="323" type="cond" truecount="1" falsecount="0"/>
|
|
1494
|
+
<line num="275" count="30" type="stmt"/>
|
|
1495
|
+
<line num="276" count="30" type="cond" truecount="1" falsecount="0"/>
|
|
1496
|
+
<line num="279" count="293" type="stmt"/>
|
|
1497
|
+
<line num="280" count="323" type="cond" truecount="0" falsecount="1"/>
|
|
1498
|
+
<line num="281" count="0" type="stmt"/>
|
|
1499
|
+
<line num="282" count="0" type="stmt"/>
|
|
1500
|
+
<line num="283" count="0" type="stmt"/>
|
|
1501
|
+
<line num="284" count="0" type="stmt"/>
|
|
1502
|
+
<line num="286" count="0" type="stmt"/>
|
|
1503
|
+
<line num="288" count="323" type="cond" truecount="1" falsecount="0"/>
|
|
1504
|
+
<line num="289" count="293" type="stmt"/>
|
|
1505
|
+
<line num="291" count="323" type="cond" truecount="0" falsecount="1"/>
|
|
1506
|
+
<line num="292" count="0" type="stmt"/>
|
|
1507
|
+
<line num="293" count="323" type="stmt"/>
|
|
1508
|
+
<line num="294" count="323" type="stmt"/>
|
|
1509
|
+
<line num="299" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1510
|
+
<line num="300" count="620" type="stmt"/>
|
|
1511
|
+
<line num="301" count="620" type="stmt"/>
|
|
1512
|
+
<line num="302" count="620" type="stmt"/>
|
|
1513
|
+
<line num="303" count="620" type="cond" truecount="1" falsecount="0"/>
|
|
1514
|
+
<line num="304" count="294" type="cond" truecount="1" falsecount="0"/>
|
|
1515
|
+
<line num="305" count="291" type="stmt"/>
|
|
1516
|
+
<line num="307" count="620" type="cond" truecount="0" falsecount="1"/>
|
|
1517
|
+
<line num="308" count="0" type="stmt"/>
|
|
1518
|
+
<line num="310" count="620" type="cond" truecount="0" falsecount="1"/>
|
|
1519
|
+
<line num="311" count="0" type="stmt"/>
|
|
1520
|
+
<line num="313" count="620" type="cond" truecount="1" falsecount="0"/>
|
|
1521
|
+
<line num="314" count="326" type="stmt"/>
|
|
1522
|
+
<line num="316" count="620" type="cond" truecount="0" falsecount="1"/>
|
|
1523
|
+
<line num="317" count="0" type="stmt"/>
|
|
1524
|
+
<line num="318" count="620" type="stmt"/>
|
|
1525
|
+
<line num="319" count="620" type="stmt"/>
|
|
1526
|
+
<line num="324" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1527
|
+
<line num="328" count="293" type="stmt"/>
|
|
1528
|
+
<line num="329" count="293" type="stmt"/>
|
|
1529
|
+
<line num="330" count="293" type="stmt"/>
|
|
1530
|
+
<line num="335" count="293" type="stmt"/>
|
|
1531
|
+
<line num="336" count="293" type="stmt"/>
|
|
1532
|
+
<line num="337" count="293" type="cond" truecount="1" falsecount="0"/>
|
|
1533
|
+
<line num="338" count="293" type="stmt"/>
|
|
1534
|
+
<line num="339" count="293" type="stmt"/>
|
|
1535
|
+
<line num="340" count="293" type="stmt"/>
|
|
1536
|
+
<line num="341" count="293" type="stmt"/>
|
|
1537
|
+
<line num="342" count="293" type="stmt"/>
|
|
1538
|
+
<line num="343" count="293" type="stmt"/>
|
|
1539
|
+
<line num="344" count="293" type="stmt"/>
|
|
1540
|
+
<line num="345" count="293" type="stmt"/>
|
|
1541
|
+
<line num="346" count="293" type="stmt"/>
|
|
1542
|
+
<line num="347" count="293" type="cond" truecount="0" falsecount="1"/>
|
|
1543
|
+
<line num="348" count="0" type="stmt"/>
|
|
1544
|
+
<line num="349" count="0" type="stmt"/>
|
|
1545
|
+
<line num="350" count="293" type="stmt"/>
|
|
1546
|
+
<line num="355" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1547
|
+
<line num="364" count="293" type="stmt"/>
|
|
1548
|
+
<line num="365" count="293" type="stmt"/>
|
|
1549
|
+
<line num="366" count="293" type="stmt"/>
|
|
1550
|
+
<line num="367" count="293" type="stmt"/>
|
|
1551
|
+
<line num="368" count="293" type="stmt"/>
|
|
1552
|
+
<line num="369" count="293" type="cond" truecount="1" falsecount="0"/>
|
|
1553
|
+
<line num="370" count="293" type="stmt"/>
|
|
1554
|
+
<line num="371" count="293" type="stmt"/>
|
|
1555
|
+
<line num="372" count="293" type="stmt"/>
|
|
1556
|
+
<line num="373" count="293" type="stmt"/>
|
|
1557
|
+
<line num="374" count="293" type="stmt"/>
|
|
1558
|
+
<line num="377" count="293" type="stmt"/>
|
|
1559
|
+
<line num="378" count="293" type="stmt"/>
|
|
1560
|
+
<line num="379" count="293" type="stmt"/>
|
|
1561
|
+
<line num="380" count="293" type="stmt"/>
|
|
1562
|
+
<line num="381" count="293" type="stmt"/>
|
|
1563
|
+
<line num="382" count="293" type="stmt"/>
|
|
1564
|
+
<line num="385" count="293" type="stmt"/>
|
|
1565
|
+
<line num="386" count="293" type="stmt"/>
|
|
1566
|
+
<line num="387" count="293" type="cond" truecount="1" falsecount="0"/>
|
|
1567
|
+
<line num="388" count="293" type="stmt"/>
|
|
1568
|
+
<line num="389" count="293" type="stmt"/>
|
|
1569
|
+
<line num="390" count="293" type="stmt"/>
|
|
1570
|
+
<line num="391" count="293" type="stmt"/>
|
|
1571
|
+
<line num="392" count="293" type="stmt"/>
|
|
1572
|
+
<line num="393" count="293" type="stmt"/>
|
|
1573
|
+
<line num="394" count="293" type="stmt"/>
|
|
1574
|
+
<line num="395" count="293" type="stmt"/>
|
|
1575
|
+
<line num="396" count="293" type="stmt"/>
|
|
1576
|
+
<line num="397" count="293" type="stmt"/>
|
|
1577
|
+
<line num="398" count="293" type="stmt"/>
|
|
1578
|
+
<line num="399" count="293" type="stmt"/>
|
|
1579
|
+
<line num="400" count="0" type="stmt"/>
|
|
1580
|
+
<line num="401" count="0" type="stmt"/>
|
|
1581
|
+
<line num="402" count="0" type="stmt"/>
|
|
1582
|
+
<line num="403" count="0" type="stmt"/>
|
|
1583
|
+
<line num="404" count="0" type="stmt"/>
|
|
1584
|
+
<line num="405" count="0" type="stmt"/>
|
|
1585
|
+
<line num="406" count="0" type="stmt"/>
|
|
1586
|
+
<line num="407" count="293" type="stmt"/>
|
|
1587
|
+
<line num="409" count="293" type="stmt"/>
|
|
1588
|
+
<line num="411" count="293" type="stmt"/>
|
|
1589
|
+
<line num="412" count="293" type="stmt"/>
|
|
1590
|
+
<line num="417" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1591
|
+
<line num="418" count="293" type="stmt"/>
|
|
1592
|
+
<line num="419" count="293" type="stmt"/>
|
|
1593
|
+
<line num="420" count="293" type="stmt"/>
|
|
1594
|
+
<line num="424" count="293" type="stmt"/>
|
|
1595
|
+
<line num="425" count="293" type="stmt"/>
|
|
1596
|
+
<line num="426" count="293" type="stmt"/>
|
|
1597
|
+
<line num="427" count="293" type="stmt"/>
|
|
1598
|
+
<line num="428" count="293" type="stmt"/>
|
|
1599
|
+
<line num="429" count="293" type="stmt"/>
|
|
1600
|
+
<line num="430" count="293" type="stmt"/>
|
|
1601
|
+
<line num="431" count="293" type="stmt"/>
|
|
1602
|
+
<line num="433" count="293" type="cond" truecount="1" falsecount="0"/>
|
|
1603
|
+
<line num="434" count="3" type="stmt"/>
|
|
1604
|
+
<line num="435" count="3" type="stmt"/>
|
|
1605
|
+
<line num="436" count="3" type="stmt"/>
|
|
1606
|
+
<line num="437" count="3" type="stmt"/>
|
|
1607
|
+
<line num="438" count="3" type="stmt"/>
|
|
1608
|
+
<line num="439" count="3" type="stmt"/>
|
|
1609
|
+
<line num="440" count="3" type="stmt"/>
|
|
1610
|
+
<line num="441" count="293" type="cond" truecount="1" falsecount="0"/>
|
|
1611
|
+
<line num="442" count="290" type="stmt"/>
|
|
1612
|
+
<line num="443" count="290" type="stmt"/>
|
|
1613
|
+
<line num="444" count="290" type="stmt"/>
|
|
1614
|
+
<line num="445" count="290" type="stmt"/>
|
|
1615
|
+
<line num="446" count="290" type="stmt"/>
|
|
1616
|
+
<line num="447" count="290" type="stmt"/>
|
|
1617
|
+
<line num="448" count="290" type="stmt"/>
|
|
1618
|
+
<line num="449" count="290" type="stmt"/>
|
|
1619
|
+
<line num="450" count="293" type="stmt"/>
|
|
1620
|
+
<line num="455" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1621
|
+
<line num="456" count="290" type="stmt"/>
|
|
1622
|
+
<line num="457" count="290" type="stmt"/>
|
|
1623
|
+
<line num="458" count="290" type="stmt"/>
|
|
1624
|
+
<line num="462" count="290" type="stmt"/>
|
|
1625
|
+
<line num="463" count="290" type="stmt"/>
|
|
1626
|
+
<line num="464" count="290" type="stmt"/>
|
|
1627
|
+
<line num="465" count="290" type="stmt"/>
|
|
1628
|
+
<line num="466" count="290" type="stmt"/>
|
|
1629
|
+
<line num="469" count="290" type="cond" truecount="1" falsecount="0"/>
|
|
1630
|
+
<line num="470" count="41" type="cond" truecount="1" falsecount="0"/>
|
|
1631
|
+
<line num="471" count="44" type="stmt"/>
|
|
1632
|
+
<line num="472" count="44" type="cond" truecount="1" falsecount="0"/>
|
|
1633
|
+
<line num="473" count="12" type="stmt"/>
|
|
1634
|
+
<line num="474" count="12" type="stmt"/>
|
|
1635
|
+
<line num="475" count="12" type="stmt"/>
|
|
1636
|
+
<line num="476" count="12" type="stmt"/>
|
|
1637
|
+
<line num="477" count="44" type="stmt"/>
|
|
1638
|
+
<line num="478" count="44" type="stmt"/>
|
|
1639
|
+
<line num="479" count="41" type="stmt"/>
|
|
1640
|
+
<line num="480" count="41" type="stmt"/>
|
|
1641
|
+
<line num="483" count="290" type="cond" truecount="1" falsecount="0"/>
|
|
1642
|
+
<line num="484" count="290" type="stmt"/>
|
|
1643
|
+
<line num="485" count="290" type="stmt"/>
|
|
1644
|
+
<line num="486" count="290" type="stmt"/>
|
|
1645
|
+
<line num="487" count="290" type="stmt"/>
|
|
1646
|
+
<line num="492" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1647
|
+
<line num="493" count="3" type="stmt"/>
|
|
1648
|
+
<line num="494" count="3" type="stmt"/>
|
|
1649
|
+
<line num="495" count="3" type="stmt"/>
|
|
1650
|
+
<line num="496" count="3" type="stmt"/>
|
|
1651
|
+
<line num="497" count="3" type="stmt"/>
|
|
1652
|
+
<line num="498" count="3" type="stmt"/>
|
|
1653
|
+
<line num="499" count="3" type="stmt"/>
|
|
1654
|
+
<line num="500" count="3" type="stmt"/>
|
|
1655
|
+
<line num="501" count="3" type="stmt"/>
|
|
1656
|
+
<line num="502" count="3" type="stmt"/>
|
|
1657
|
+
<line num="504" count="3" type="stmt"/>
|
|
1658
|
+
<line num="505" count="3" type="stmt"/>
|
|
1659
|
+
<line num="506" count="3" type="stmt"/>
|
|
1660
|
+
<line num="508" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
1661
|
+
<line num="509" count="2" type="stmt"/>
|
|
1662
|
+
<line num="510" count="2" type="stmt"/>
|
|
1663
|
+
<line num="511" count="2" type="stmt"/>
|
|
1664
|
+
<line num="512" count="2" type="stmt"/>
|
|
1665
|
+
<line num="513" count="2" type="stmt"/>
|
|
1666
|
+
<line num="515" count="3" type="stmt"/>
|
|
1667
|
+
<line num="516" count="3" type="stmt"/>
|
|
1668
|
+
<line num="521" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1669
|
+
<line num="522" count="293" type="stmt"/>
|
|
1670
|
+
<line num="523" count="293" type="stmt"/>
|
|
1671
|
+
<line num="524" count="293" type="stmt"/>
|
|
1672
|
+
<line num="525" count="293" type="stmt"/>
|
|
1673
|
+
<line num="526" count="293" type="stmt"/>
|
|
1674
|
+
<line num="527" count="293" type="stmt"/>
|
|
1675
|
+
<line num="528" count="293" type="cond" truecount="1" falsecount="0"/>
|
|
1676
|
+
<line num="529" count="245" type="cond" truecount="1" falsecount="0"/>
|
|
1677
|
+
<line num="530" count="245" type="stmt"/>
|
|
1678
|
+
<line num="531" count="245" type="stmt"/>
|
|
1679
|
+
<line num="532" count="245" type="stmt"/>
|
|
1680
|
+
<line num="533" count="245" type="stmt"/>
|
|
1681
|
+
<line num="535" count="293" type="cond" truecount="1" falsecount="0"/>
|
|
1682
|
+
<line num="536" count="27" type="stmt"/>
|
|
1683
|
+
<line num="537" count="27" type="cond" truecount="1" falsecount="0"/>
|
|
1684
|
+
<line num="538" count="27" type="stmt"/>
|
|
1685
|
+
<line num="539" count="27" type="stmt"/>
|
|
1686
|
+
<line num="540" count="27" type="stmt"/>
|
|
1687
|
+
<line num="541" count="27" type="stmt"/>
|
|
1688
|
+
<line num="542" count="27" type="stmt"/>
|
|
1689
|
+
<line num="544" count="293" type="cond" truecount="1" falsecount="0"/>
|
|
1690
|
+
<line num="546" count="21" type="stmt"/>
|
|
1691
|
+
<line num="547" count="293" type="stmt"/>
|
|
1692
|
+
<line num="548" count="293" type="stmt"/>
|
|
1693
|
+
<line num="553" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1694
|
+
<line num="556" count="309" type="stmt"/>
|
|
1695
|
+
<line num="557" count="309" type="stmt"/>
|
|
1696
|
+
<line num="558" count="309" type="stmt"/>
|
|
1697
|
+
<line num="559" count="1" type="stmt"/>
|
|
1698
|
+
</file>
|
|
1188
1699
|
<file name="registry.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/src/registry.mts">
|
|
1189
|
-
<metrics statements="38" coveredstatements="38" conditionals="
|
|
1700
|
+
<metrics statements="38" coveredstatements="38" conditionals="15" coveredconditionals="15" methods="6" coveredmethods="6"/>
|
|
1190
1701
|
<line num="3" count="1" type="stmt"/>
|
|
1191
1702
|
<line num="12" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1192
|
-
<line num="13" count="
|
|
1193
|
-
<line num="15" count="
|
|
1194
|
-
<line num="17" count="
|
|
1195
|
-
<line num="18" count="
|
|
1196
|
-
<line num="19" count="
|
|
1197
|
-
<line num="20" count="
|
|
1198
|
-
<line num="21" count="
|
|
1703
|
+
<line num="13" count="124" type="stmt"/>
|
|
1704
|
+
<line num="15" count="124" type="cond" truecount="1" falsecount="0"/>
|
|
1705
|
+
<line num="17" count="124" type="cond" truecount="1" falsecount="0"/>
|
|
1706
|
+
<line num="18" count="642" type="cond" truecount="1" falsecount="0"/>
|
|
1707
|
+
<line num="19" count="629" type="stmt"/>
|
|
1708
|
+
<line num="20" count="629" type="cond" truecount="2" falsecount="0"/>
|
|
1709
|
+
<line num="21" count="421" type="cond" truecount="1" falsecount="0"/>
|
|
1199
1710
|
<line num="22" count="5" type="stmt"/>
|
|
1200
|
-
<line num="23" count="5" type="
|
|
1201
|
-
<line num="24" count="
|
|
1202
|
-
<line num="25" count="
|
|
1203
|
-
<line num="27" count="
|
|
1204
|
-
<line num="28" count="
|
|
1205
|
-
<line num="29" count="
|
|
1206
|
-
<line num="30" count="
|
|
1207
|
-
<line num="31" count="
|
|
1711
|
+
<line num="23" count="5" type="cond" truecount="1" falsecount="0"/>
|
|
1712
|
+
<line num="24" count="8" type="stmt"/>
|
|
1713
|
+
<line num="25" count="642" type="stmt"/>
|
|
1714
|
+
<line num="27" count="124" type="cond" truecount="1" falsecount="0"/>
|
|
1715
|
+
<line num="28" count="636" type="stmt"/>
|
|
1716
|
+
<line num="29" count="636" type="stmt"/>
|
|
1717
|
+
<line num="30" count="636" type="stmt"/>
|
|
1718
|
+
<line num="31" count="636" type="cond" truecount="1" falsecount="0"/>
|
|
1208
1719
|
<line num="32" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
1209
1720
|
<line num="33" count="6" type="stmt"/>
|
|
1210
1721
|
<line num="34" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
1211
1722
|
<line num="35" count="2" type="stmt"/>
|
|
1212
1723
|
<line num="36" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
1213
|
-
<line num="37" count="
|
|
1214
|
-
<line num="38" count="
|
|
1215
|
-
<line num="40" count="
|
|
1216
|
-
<line num="41" count="
|
|
1217
|
-
<line num="42" count="
|
|
1218
|
-
<line num="43" count="
|
|
1219
|
-
<line num="44" count="
|
|
1220
|
-
<line num="45" count="
|
|
1221
|
-
<line num="46" count="
|
|
1222
|
-
<line num="47" count="
|
|
1223
|
-
<line num="49" count="
|
|
1724
|
+
<line num="37" count="628" type="stmt"/>
|
|
1725
|
+
<line num="38" count="636" type="stmt"/>
|
|
1726
|
+
<line num="40" count="124" type="cond" truecount="1" falsecount="0"/>
|
|
1727
|
+
<line num="41" count="311" type="stmt"/>
|
|
1728
|
+
<line num="42" count="311" type="stmt"/>
|
|
1729
|
+
<line num="43" count="311" type="stmt"/>
|
|
1730
|
+
<line num="44" count="311" type="stmt"/>
|
|
1731
|
+
<line num="45" count="311" type="stmt"/>
|
|
1732
|
+
<line num="46" count="311" type="stmt"/>
|
|
1733
|
+
<line num="47" count="311" type="stmt"/>
|
|
1734
|
+
<line num="49" count="124" type="cond" truecount="1" falsecount="0"/>
|
|
1224
1735
|
<line num="50" count="4" type="stmt"/>
|
|
1225
1736
|
<line num="51" count="4" type="stmt"/>
|
|
1226
|
-
<line num="52" count="
|
|
1737
|
+
<line num="52" count="124" type="stmt"/>
|
|
1227
1738
|
<line num="54" count="1" type="stmt"/>
|
|
1228
1739
|
</file>
|
|
1229
1740
|
<file name="request-context-holder.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/src/request-context-holder.mts">
|
|
1230
|
-
<metrics statements="
|
|
1741
|
+
<metrics statements="72" coveredstatements="70" conditionals="16" coveredconditionals="15" methods="11" coveredmethods="11"/>
|
|
1231
1742
|
<line num="3" count="1" type="stmt"/>
|
|
1232
1743
|
<line num="4" count="1" type="stmt"/>
|
|
1233
1744
|
<line num="5" count="1" type="stmt"/>
|
|
1234
|
-
<line num="
|
|
1235
|
-
<line num="
|
|
1236
|
-
<line num="
|
|
1237
|
-
<line num="
|
|
1238
|
-
<line num="
|
|
1239
|
-
<line num="
|
|
1240
|
-
<line num="
|
|
1241
|
-
<line num="
|
|
1242
|
-
<line num="
|
|
1243
|
-
<line num="
|
|
1244
|
-
<line num="
|
|
1245
|
-
<line num="
|
|
1745
|
+
<line num="107" count="1" type="stmt"/>
|
|
1746
|
+
<line num="108" count="1" type="stmt"/>
|
|
1747
|
+
<line num="110" count="44" type="cond" truecount="1" falsecount="0"/>
|
|
1748
|
+
<line num="111" count="44" type="stmt"/>
|
|
1749
|
+
<line num="112" count="44" type="stmt"/>
|
|
1750
|
+
<line num="114" count="44" type="cond" truecount="1" falsecount="0"/>
|
|
1751
|
+
<line num="115" count="44" type="stmt"/>
|
|
1752
|
+
<line num="116" count="44" type="stmt"/>
|
|
1753
|
+
<line num="117" count="44" type="stmt"/>
|
|
1754
|
+
<line num="118" count="44" type="stmt"/>
|
|
1755
|
+
<line num="119" count="44" type="stmt"/>
|
|
1756
|
+
<line num="120" count="44" type="cond" truecount="1" falsecount="0"/>
|
|
1757
|
+
<line num="121" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
1758
|
+
<line num="122" count="3" type="stmt"/>
|
|
1759
|
+
<line num="123" count="2" type="stmt"/>
|
|
1760
|
+
<line num="124" count="2" type="stmt"/>
|
|
1761
|
+
<line num="125" count="44" type="stmt"/>
|
|
1762
|
+
<line num="130" count="44" type="cond" truecount="1" falsecount="0"/>
|
|
1763
|
+
<line num="131" count="27" type="stmt"/>
|
|
1764
|
+
<line num="132" count="27" type="stmt"/>
|
|
1765
|
+
<line num="137" count="44" type="cond" truecount="1" falsecount="0"/>
|
|
1766
|
+
<line num="138" count="96" type="stmt"/>
|
|
1767
|
+
<line num="139" count="96" type="stmt"/>
|
|
1768
|
+
<line num="144" count="44" type="cond" truecount="1" falsecount="0"/>
|
|
1769
|
+
<line num="145" count="2" type="stmt"/>
|
|
1770
|
+
<line num="146" count="2" type="stmt"/>
|
|
1771
|
+
<line num="151" count="44" type="cond" truecount="1" falsecount="0"/>
|
|
1772
|
+
<line num="152" count="12" type="stmt"/>
|
|
1773
|
+
<line num="153" count="12" type="stmt"/>
|
|
1774
|
+
<line num="155" count="44" type="cond" truecount="1" falsecount="0"/>
|
|
1775
|
+
<line num="156" count="41" type="stmt"/>
|
|
1776
|
+
<line num="157" count="41" type="stmt"/>
|
|
1777
|
+
<line num="158" count="41" type="stmt"/>
|
|
1778
|
+
<line num="159" count="41" type="stmt"/>
|
|
1779
|
+
<line num="160" count="41" type="cond" truecount="1" falsecount="0"/>
|
|
1780
|
+
<line num="161" count="12" type="stmt"/>
|
|
1781
|
+
<line num="162" count="12" type="stmt"/>
|
|
1782
|
+
<line num="163" count="12" type="stmt"/>
|
|
1783
|
+
<line num="164" count="12" type="stmt"/>
|
|
1784
|
+
<line num="165" count="12" type="stmt"/>
|
|
1785
|
+
<line num="166" count="12" type="stmt"/>
|
|
1786
|
+
<line num="167" count="12" type="stmt"/>
|
|
1787
|
+
<line num="168" count="12" type="stmt"/>
|
|
1788
|
+
<line num="169" count="12" type="stmt"/>
|
|
1789
|
+
<line num="170" count="41" type="cond" truecount="1" falsecount="0"/>
|
|
1790
|
+
<line num="171" count="29" type="cond" truecount="0" falsecount="1"/>
|
|
1791
|
+
<line num="172" count="0" type="stmt"/>
|
|
1792
|
+
<line num="173" count="0" type="stmt"/>
|
|
1793
|
+
<line num="174" count="29" type="stmt"/>
|
|
1794
|
+
<line num="175" count="29" type="stmt"/>
|
|
1795
|
+
<line num="176" count="41" type="stmt"/>
|
|
1796
|
+
<line num="178" count="44" type="cond" truecount="1" falsecount="0"/>
|
|
1797
|
+
<line num="179" count="29" type="stmt"/>
|
|
1798
|
+
<line num="180" count="29" type="stmt"/>
|
|
1799
|
+
<line num="181" count="29" type="stmt"/>
|
|
1800
|
+
<line num="183" count="44" type="cond" truecount="1" falsecount="0"/>
|
|
1801
|
+
<line num="184" count="7" type="stmt"/>
|
|
1802
|
+
<line num="185" count="7" type="stmt"/>
|
|
1803
|
+
<line num="187" count="44" type="cond" truecount="1" falsecount="0"/>
|
|
1804
|
+
<line num="188" count="2" type="stmt"/>
|
|
1805
|
+
<line num="189" count="2" type="stmt"/>
|
|
1806
|
+
<line num="190" count="44" type="stmt"/>
|
|
1807
|
+
<line num="195" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1808
|
+
<line num="196" count="8" type="stmt"/>
|
|
1809
|
+
<line num="197" count="8" type="stmt"/>
|
|
1810
|
+
<line num="198" count="8" type="stmt"/>
|
|
1811
|
+
<line num="199" count="8" type="stmt"/>
|
|
1812
|
+
<line num="200" count="8" type="stmt"/>
|
|
1813
|
+
<line num="201" count="8" type="stmt"/>
|
|
1814
|
+
</file>
|
|
1815
|
+
<file name="request-context-manager.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/src/request-context-manager.mts">
|
|
1816
|
+
<metrics statements="93" coveredstatements="75" conditionals="24" coveredconditionals="20" methods="8" coveredmethods="8"/>
|
|
1817
|
+
<line num="3" count="1" type="stmt"/>
|
|
1818
|
+
<line num="9" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1819
|
+
<line num="10" count="143" type="stmt"/>
|
|
1820
|
+
<line num="11" count="143" type="stmt"/>
|
|
1821
|
+
<line num="13" count="143" type="cond" truecount="1" falsecount="0"/>
|
|
1822
|
+
<line num="22" count="143" type="cond" truecount="1" falsecount="0"/>
|
|
1823
|
+
<line num="23" count="32" type="stmt"/>
|
|
1824
|
+
<line num="24" count="32" type="stmt"/>
|
|
1825
|
+
<line num="25" count="32" type="stmt"/>
|
|
1826
|
+
<line num="26" count="32" type="stmt"/>
|
|
1827
|
+
<line num="27" count="32" type="cond" truecount="0" falsecount="1"/>
|
|
1828
|
+
<line num="28" count="0" type="stmt"/>
|
|
1829
|
+
<line num="29" count="0" type="stmt"/>
|
|
1830
|
+
<line num="30" count="0" type="stmt"/>
|
|
1831
|
+
<line num="31" count="0" type="stmt"/>
|
|
1832
|
+
<line num="33" count="32" type="stmt"/>
|
|
1833
|
+
<line num="34" count="32" type="stmt"/>
|
|
1834
|
+
<line num="35" count="32" type="stmt"/>
|
|
1835
|
+
<line num="36" count="32" type="stmt"/>
|
|
1836
|
+
<line num="37" count="32" type="stmt"/>
|
|
1837
|
+
<line num="38" count="32" type="stmt"/>
|
|
1838
|
+
<line num="39" count="32" type="stmt"/>
|
|
1839
|
+
<line num="41" count="32" type="cond" truecount="1" falsecount="0"/>
|
|
1840
|
+
<line num="42" count="32" type="stmt"/>
|
|
1841
|
+
<line num="43" count="32" type="stmt"/>
|
|
1842
|
+
<line num="44" count="32" type="stmt"/>
|
|
1843
|
+
<line num="45" count="32" type="stmt"/>
|
|
1844
|
+
<line num="51" count="143" type="cond" truecount="1" falsecount="0"/>
|
|
1845
|
+
<line num="52" count="26" type="stmt"/>
|
|
1846
|
+
<line num="53" count="26" type="cond" truecount="0" falsecount="1"/>
|
|
1847
|
+
<line num="54" count="0" type="stmt"/>
|
|
1848
|
+
<line num="55" count="0" type="stmt"/>
|
|
1849
|
+
<line num="56" count="0" type="stmt"/>
|
|
1850
|
+
<line num="57" count="0" type="stmt"/>
|
|
1851
|
+
<line num="58" count="0" type="stmt"/>
|
|
1852
|
+
<line num="60" count="26" type="cond" truecount="1" falsecount="0"/>
|
|
1853
|
+
<line num="61" count="26" type="stmt"/>
|
|
1854
|
+
<line num="62" count="26" type="stmt"/>
|
|
1855
|
+
<line num="65" count="26" type="stmt"/>
|
|
1856
|
+
<line num="66" count="26" type="cond" truecount="1" falsecount="0"/>
|
|
1857
|
+
<line num="67" count="21" type="cond" truecount="1" falsecount="0"/>
|
|
1858
|
+
<line num="68" count="4" type="stmt"/>
|
|
1859
|
+
<line num="69" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
1860
|
+
<line num="70" count="4" type="stmt"/>
|
|
1861
|
+
<line num="71" count="4" type="stmt"/>
|
|
1862
|
+
<line num="72" count="21" type="stmt"/>
|
|
1863
|
+
<line num="74" count="26" type="stmt"/>
|
|
1864
|
+
<line num="77" count="26" type="stmt"/>
|
|
1865
|
+
<line num="78" count="26" type="stmt"/>
|
|
1866
|
+
<line num="81" count="26" type="cond" truecount="1" falsecount="0"/>
|
|
1867
|
+
<line num="82" count="24" type="stmt"/>
|
|
1868
|
+
<line num="83" count="24" type="cond" truecount="1" falsecount="0"/>
|
|
1869
|
+
<line num="84" count="24" type="stmt"/>
|
|
1870
|
+
<line num="86" count="26" type="cond" truecount="1" falsecount="0"/>
|
|
1871
|
+
<line num="87" count="26" type="stmt"/>
|
|
1872
|
+
<line num="88" count="26" type="stmt"/>
|
|
1873
|
+
<line num="89" count="26" type="stmt"/>
|
|
1874
|
+
<line num="95" count="143" type="cond" truecount="1" falsecount="0"/>
|
|
1875
|
+
<line num="96" count="445" type="stmt"/>
|
|
1876
|
+
<line num="97" count="445" type="stmt"/>
|
|
1877
|
+
<line num="103" count="143" type="cond" truecount="1" falsecount="0"/>
|
|
1246
1878
|
<line num="104" count="3" type="stmt"/>
|
|
1247
|
-
<line num="105" count="
|
|
1248
|
-
<line num="106" count="
|
|
1249
|
-
<line num="107" count="
|
|
1250
|
-
<line num="
|
|
1251
|
-
<line num="
|
|
1252
|
-
<line num="
|
|
1253
|
-
<line num="
|
|
1254
|
-
<line num="
|
|
1255
|
-
<line num="
|
|
1256
|
-
<line num="
|
|
1257
|
-
<line num="
|
|
1258
|
-
<line num="
|
|
1259
|
-
<line num="
|
|
1260
|
-
<line num="
|
|
1261
|
-
<line num="
|
|
1262
|
-
<line num="
|
|
1263
|
-
<line num="
|
|
1264
|
-
<line num="
|
|
1265
|
-
<line num="
|
|
1266
|
-
<line num="
|
|
1267
|
-
<line num="
|
|
1268
|
-
<line num="
|
|
1269
|
-
<line num="
|
|
1270
|
-
<line num="
|
|
1271
|
-
<line num="
|
|
1272
|
-
<line num="
|
|
1273
|
-
<line num="
|
|
1274
|
-
<line num="
|
|
1275
|
-
<line num="
|
|
1276
|
-
<line num="
|
|
1277
|
-
<line num="
|
|
1278
|
-
<line num="138" count="19" type="cond" truecount="1" falsecount="0"/>
|
|
1279
|
-
<line num="139" count="16" type="stmt"/>
|
|
1280
|
-
<line num="140" count="16" type="stmt"/>
|
|
1281
|
-
<line num="142" count="19" type="cond" truecount="1" falsecount="0"/>
|
|
1282
|
-
<line num="143" count="26" type="stmt"/>
|
|
1283
|
-
<line num="144" count="26" type="stmt"/>
|
|
1284
|
-
<line num="146" count="19" type="cond" truecount="1" falsecount="0"/>
|
|
1285
|
-
<line num="147" count="12" type="stmt"/>
|
|
1286
|
-
<line num="148" count="12" type="stmt"/>
|
|
1287
|
-
<line num="150" count="19" type="cond" truecount="1" falsecount="0"/>
|
|
1288
|
-
<line num="151" count="14" type="stmt"/>
|
|
1289
|
-
<line num="152" count="14" type="stmt"/>
|
|
1290
|
-
<line num="153" count="14" type="stmt"/>
|
|
1291
|
-
<line num="154" count="14" type="stmt"/>
|
|
1292
|
-
<line num="156" count="19" type="cond" truecount="1" falsecount="0"/>
|
|
1293
|
-
<line num="157" count="7" type="stmt"/>
|
|
1294
|
-
<line num="158" count="7" type="stmt"/>
|
|
1295
|
-
<line num="160" count="19" type="cond" truecount="1" falsecount="0"/>
|
|
1296
|
-
<line num="161" count="2" type="stmt"/>
|
|
1297
|
-
<line num="162" count="2" type="stmt"/>
|
|
1298
|
-
<line num="163" count="19" type="stmt"/>
|
|
1299
|
-
<line num="168" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1300
|
-
<line num="169" count="8" type="stmt"/>
|
|
1301
|
-
<line num="170" count="8" type="stmt"/>
|
|
1302
|
-
<line num="171" count="8" type="stmt"/>
|
|
1303
|
-
<line num="172" count="8" type="stmt"/>
|
|
1304
|
-
<line num="173" count="8" type="stmt"/>
|
|
1305
|
-
<line num="174" count="8" type="stmt"/>
|
|
1879
|
+
<line num="105" count="3" type="cond" truecount="0" falsecount="1"/>
|
|
1880
|
+
<line num="106" count="0" type="stmt"/>
|
|
1881
|
+
<line num="107" count="0" type="stmt"/>
|
|
1882
|
+
<line num="108" count="0" type="stmt"/>
|
|
1883
|
+
<line num="109" count="0" type="stmt"/>
|
|
1884
|
+
<line num="110" count="3" type="stmt"/>
|
|
1885
|
+
<line num="111" count="3" type="stmt"/>
|
|
1886
|
+
<line num="117" count="143" type="cond" truecount="1" falsecount="0"/>
|
|
1887
|
+
<line num="118" count="41" type="stmt"/>
|
|
1888
|
+
<line num="119" count="41" type="stmt"/>
|
|
1889
|
+
<line num="124" count="143" type="cond" truecount="1" falsecount="0"/>
|
|
1890
|
+
<line num="125" count="9" type="stmt"/>
|
|
1891
|
+
<line num="127" count="9" type="cond" truecount="1" falsecount="0"/>
|
|
1892
|
+
<line num="128" count="7" type="cond" truecount="1" falsecount="0"/>
|
|
1893
|
+
<line num="129" count="7" type="stmt"/>
|
|
1894
|
+
<line num="130" count="7" type="cond" truecount="1" falsecount="0"/>
|
|
1895
|
+
<line num="132" count="2" type="stmt"/>
|
|
1896
|
+
<line num="133" count="9" type="stmt"/>
|
|
1897
|
+
<line num="134" count="9" type="stmt"/>
|
|
1898
|
+
<line num="137" count="9" type="cond" truecount="1" falsecount="0"/>
|
|
1899
|
+
<line num="138" count="2" type="stmt"/>
|
|
1900
|
+
<line num="139" count="2" type="stmt"/>
|
|
1901
|
+
<line num="140" count="2" type="cond" truecount="0" falsecount="1"/>
|
|
1902
|
+
<line num="141" count="0" type="stmt"/>
|
|
1903
|
+
<line num="142" count="0" type="stmt"/>
|
|
1904
|
+
<line num="143" count="0" type="stmt"/>
|
|
1905
|
+
<line num="144" count="0" type="stmt"/>
|
|
1906
|
+
<line num="146" count="0" type="stmt"/>
|
|
1907
|
+
<line num="147" count="2" type="stmt"/>
|
|
1908
|
+
<line num="148" count="9" type="stmt"/>
|
|
1909
|
+
<line num="149" count="143" type="stmt"/>
|
|
1306
1910
|
</file>
|
|
1307
1911
|
<file name="service-instantiator.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/src/service-instantiator.mts">
|
|
1308
1912
|
<metrics statements="110" coveredstatements="110" conditionals="39" coveredconditionals="36" methods="4" coveredmethods="4"/>
|
|
@@ -1310,69 +1914,69 @@
|
|
|
1310
1914
|
<line num="11" count="1" type="stmt"/>
|
|
1311
1915
|
<line num="12" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1312
1916
|
<line num="21" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1313
|
-
<line num="22" count="
|
|
1314
|
-
<line num="23" count="
|
|
1315
|
-
<line num="24" count="
|
|
1316
|
-
<line num="25" count="
|
|
1317
|
-
<line num="26" count="
|
|
1318
|
-
<line num="27" count="
|
|
1319
|
-
<line num="28" count="
|
|
1320
|
-
<line num="29" count="
|
|
1321
|
-
<line num="30" count="
|
|
1917
|
+
<line num="22" count="308" type="stmt"/>
|
|
1918
|
+
<line num="23" count="308" type="stmt"/>
|
|
1919
|
+
<line num="24" count="308" type="stmt"/>
|
|
1920
|
+
<line num="25" count="308" type="stmt"/>
|
|
1921
|
+
<line num="26" count="308" type="stmt"/>
|
|
1922
|
+
<line num="27" count="308" type="stmt"/>
|
|
1923
|
+
<line num="28" count="308" type="cond" truecount="1" falsecount="0"/>
|
|
1924
|
+
<line num="29" count="271" type="stmt"/>
|
|
1925
|
+
<line num="30" count="308" type="cond" truecount="1" falsecount="0"/>
|
|
1322
1926
|
<line num="31" count="36" type="stmt"/>
|
|
1323
|
-
<line num="32" count="
|
|
1927
|
+
<line num="32" count="308" type="cond" truecount="1" falsecount="0"/>
|
|
1324
1928
|
<line num="33" count="1" type="stmt"/>
|
|
1325
1929
|
<line num="34" count="1" type="stmt"/>
|
|
1326
1930
|
<line num="35" count="1" type="stmt"/>
|
|
1327
|
-
<line num="36" count="
|
|
1328
|
-
<line num="37" count="
|
|
1931
|
+
<line num="36" count="308" type="stmt"/>
|
|
1932
|
+
<line num="37" count="308" type="cond" truecount="1" falsecount="0"/>
|
|
1329
1933
|
<line num="38" count="1" type="cond" truecount="0" falsecount="1"/>
|
|
1330
1934
|
<line num="39" count="1" type="stmt"/>
|
|
1331
|
-
<line num="40" count="
|
|
1935
|
+
<line num="40" count="308" type="stmt"/>
|
|
1332
1936
|
<line num="49" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1333
|
-
<line num="50" count="
|
|
1334
|
-
<line num="51" count="
|
|
1335
|
-
<line num="52" count="
|
|
1336
|
-
<line num="53" count="
|
|
1337
|
-
<line num="54" count="
|
|
1338
|
-
<line num="55" count="
|
|
1339
|
-
<line num="56" count="
|
|
1340
|
-
<line num="57" count="
|
|
1341
|
-
<line num="58" count="
|
|
1342
|
-
<line num="59" count="
|
|
1343
|
-
<line num="60" count="
|
|
1344
|
-
<line num="62" count="
|
|
1345
|
-
<line num="63" count="
|
|
1346
|
-
<line num="64" count="
|
|
1347
|
-
<line num="65" count="
|
|
1348
|
-
<line num="66" count="
|
|
1349
|
-
<line num="67" count="
|
|
1350
|
-
<line num="68" count="
|
|
1351
|
-
<line num="69" count="
|
|
1352
|
-
<line num="70" count="
|
|
1353
|
-
<line num="71" count="
|
|
1354
|
-
<line num="72" count="
|
|
1355
|
-
<line num="73" count="
|
|
1356
|
-
<line num="75" count="
|
|
1937
|
+
<line num="50" count="271" type="stmt"/>
|
|
1938
|
+
<line num="51" count="271" type="stmt"/>
|
|
1939
|
+
<line num="52" count="271" type="stmt"/>
|
|
1940
|
+
<line num="53" count="271" type="stmt"/>
|
|
1941
|
+
<line num="54" count="271" type="stmt"/>
|
|
1942
|
+
<line num="55" count="271" type="cond" truecount="1" falsecount="0"/>
|
|
1943
|
+
<line num="56" count="313" type="stmt"/>
|
|
1944
|
+
<line num="57" count="313" type="cond" truecount="2" falsecount="0"/>
|
|
1945
|
+
<line num="58" count="313" type="stmt"/>
|
|
1946
|
+
<line num="59" count="313" type="stmt"/>
|
|
1947
|
+
<line num="60" count="271" type="stmt"/>
|
|
1948
|
+
<line num="62" count="271" type="stmt"/>
|
|
1949
|
+
<line num="63" count="271" type="cond" truecount="1" falsecount="0"/>
|
|
1950
|
+
<line num="64" count="44" type="stmt"/>
|
|
1951
|
+
<line num="65" count="44" type="cond" truecount="2" falsecount="0"/>
|
|
1952
|
+
<line num="66" count="2" type="stmt"/>
|
|
1953
|
+
<line num="67" count="2" type="stmt"/>
|
|
1954
|
+
<line num="68" count="2" type="stmt"/>
|
|
1955
|
+
<line num="69" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
1956
|
+
<line num="70" count="42" type="stmt"/>
|
|
1957
|
+
<line num="71" count="42" type="stmt"/>
|
|
1958
|
+
<line num="72" count="42" type="stmt"/>
|
|
1959
|
+
<line num="73" count="42" type="cond" truecount="1" falsecount="0"/>
|
|
1960
|
+
<line num="75" count="271" type="cond" truecount="1" falsecount="0"/>
|
|
1357
1961
|
<line num="76" count="1" type="stmt"/>
|
|
1358
1962
|
<line num="80" count="1" type="stmt"/>
|
|
1359
1963
|
<line num="81" count="1" type="stmt"/>
|
|
1360
1964
|
<line num="82" count="1" type="stmt"/>
|
|
1361
1965
|
<line num="83" count="1" type="stmt"/>
|
|
1362
1966
|
<line num="84" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1363
|
-
<line num="87" count="
|
|
1967
|
+
<line num="87" count="271" type="cond" truecount="1" falsecount="0"/>
|
|
1364
1968
|
<line num="88" count="1" type="stmt"/>
|
|
1365
1969
|
<line num="89" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1366
|
-
<line num="90" count="
|
|
1367
|
-
<line num="91" count="
|
|
1368
|
-
<line num="92" count="
|
|
1369
|
-
<line num="93" count="
|
|
1370
|
-
<line num="94" count="
|
|
1371
|
-
<line num="96" count="
|
|
1372
|
-
<line num="97" count="
|
|
1373
|
-
<line num="98" count="
|
|
1374
|
-
<line num="99" count="
|
|
1375
|
-
<line num="100" count="
|
|
1970
|
+
<line num="90" count="271" type="cond" truecount="1" falsecount="0"/>
|
|
1971
|
+
<line num="91" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
1972
|
+
<line num="92" count="3" type="stmt"/>
|
|
1973
|
+
<line num="93" count="3" type="stmt"/>
|
|
1974
|
+
<line num="94" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
1975
|
+
<line num="96" count="265" type="stmt"/>
|
|
1976
|
+
<line num="97" count="271" type="cond" truecount="1" falsecount="0"/>
|
|
1977
|
+
<line num="98" count="6" type="cond" truecount="0" falsecount="1"/>
|
|
1978
|
+
<line num="99" count="6" type="stmt"/>
|
|
1979
|
+
<line num="100" count="271" type="stmt"/>
|
|
1376
1980
|
<line num="109" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1377
1981
|
<line num="110" count="36" type="stmt"/>
|
|
1378
1982
|
<line num="111" count="36" type="stmt"/>
|
|
@@ -1417,61 +2021,358 @@
|
|
|
1417
2021
|
<line num="157" count="36" type="stmt"/>
|
|
1418
2022
|
<line num="158" count="1" type="stmt"/>
|
|
1419
2023
|
</file>
|
|
2024
|
+
<file name="service-invalidator.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/src/service-invalidator.mts">
|
|
2025
|
+
<metrics statements="294" coveredstatements="232" conditionals="55" coveredconditionals="48" methods="24" coveredmethods="19"/>
|
|
2026
|
+
<line num="7" count="1" type="stmt"/>
|
|
2027
|
+
<line num="22" count="1" type="stmt"/>
|
|
2028
|
+
<line num="23" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
2029
|
+
<line num="24" count="143" type="stmt"/>
|
|
2030
|
+
<line num="25" count="143" type="stmt"/>
|
|
2031
|
+
<line num="26" count="143" type="stmt"/>
|
|
2032
|
+
<line num="27" count="143" type="stmt"/>
|
|
2033
|
+
<line num="28" count="143" type="stmt"/>
|
|
2034
|
+
<line num="33" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
2035
|
+
<line num="34" count="37" type="cond" truecount="1" falsecount="0"/>
|
|
2036
|
+
<line num="35" count="37" type="stmt"/>
|
|
2037
|
+
<line num="36" count="37" type="stmt"/>
|
|
2038
|
+
<line num="37" count="37" type="stmt"/>
|
|
2039
|
+
<line num="39" count="37" type="stmt"/>
|
|
2040
|
+
<line num="40" count="37" type="cond" truecount="1" falsecount="0"/>
|
|
2041
|
+
<line num="41" count="32" type="stmt"/>
|
|
2042
|
+
<line num="42" count="32" type="stmt"/>
|
|
2043
|
+
<line num="45" count="37" type="stmt"/>
|
|
2044
|
+
<line num="46" count="37" type="cond" truecount="1" falsecount="0"/>
|
|
2045
|
+
<line num="47" count="6" type="stmt"/>
|
|
2046
|
+
<line num="48" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
2047
|
+
<line num="49" count="2" type="stmt"/>
|
|
2048
|
+
<line num="50" count="2" type="stmt"/>
|
|
2049
|
+
<line num="51" count="2" type="stmt"/>
|
|
2050
|
+
<line num="52" count="2" type="stmt"/>
|
|
2051
|
+
<line num="53" count="2" type="stmt"/>
|
|
2052
|
+
<line num="54" count="2" type="stmt"/>
|
|
2053
|
+
<line num="55" count="2" type="stmt"/>
|
|
2054
|
+
<line num="56" count="6" type="stmt"/>
|
|
2055
|
+
<line num="58" count="37" type="stmt"/>
|
|
2056
|
+
<line num="59" count="37" type="stmt"/>
|
|
2057
|
+
<line num="66" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
2058
|
+
<line num="67" count="10" type="stmt"/>
|
|
2059
|
+
<line num="68" count="10" type="stmt"/>
|
|
2060
|
+
<line num="69" count="10" type="stmt"/>
|
|
2061
|
+
<line num="70" count="10" type="stmt"/>
|
|
2062
|
+
<line num="71" count="10" type="stmt"/>
|
|
2063
|
+
<line num="73" count="10" type="cond" truecount="1" falsecount="0"/>
|
|
2064
|
+
<line num="74" count="10" type="stmt"/>
|
|
2065
|
+
<line num="75" count="10" type="stmt"/>
|
|
2066
|
+
<line num="78" count="10" type="stmt"/>
|
|
2067
|
+
<line num="79" count="10" type="cond" truecount="1" falsecount="0"/>
|
|
2068
|
+
<line num="80" count="10" type="stmt"/>
|
|
2069
|
+
<line num="81" count="10" type="stmt"/>
|
|
2070
|
+
<line num="82" count="10" type="stmt"/>
|
|
2071
|
+
<line num="83" count="10" type="stmt"/>
|
|
2072
|
+
<line num="86" count="10" type="stmt"/>
|
|
2073
|
+
<line num="88" count="10" type="cond" truecount="1" falsecount="0"/>
|
|
2074
|
+
<line num="89" count="4" type="stmt"/>
|
|
2075
|
+
<line num="90" count="10" type="cond" truecount="1" falsecount="0"/>
|
|
2076
|
+
<line num="91" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
2077
|
+
<line num="92" count="6" type="stmt"/>
|
|
2078
|
+
<line num="93" count="6" type="stmt"/>
|
|
2079
|
+
<line num="96" count="6" type="stmt"/>
|
|
2080
|
+
<line num="97" count="6" type="stmt"/>
|
|
2081
|
+
<line num="98" count="6" type="stmt"/>
|
|
2082
|
+
<line num="99" count="6" type="stmt"/>
|
|
2083
|
+
<line num="100" count="6" type="stmt"/>
|
|
2084
|
+
<line num="103" count="10" type="cond" truecount="1" falsecount="0"/>
|
|
2085
|
+
<line num="104" count="9" type="stmt"/>
|
|
2086
|
+
<line num="105" count="9" type="stmt"/>
|
|
2087
|
+
<line num="107" count="10" type="cond" truecount="1" falsecount="0"/>
|
|
2088
|
+
<line num="108" count="10" type="stmt"/>
|
|
2089
|
+
<line num="113" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
2090
|
+
<line num="114" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
2091
|
+
<line num="115" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
2092
|
+
<line num="116" count="11" type="stmt"/>
|
|
2093
|
+
<line num="117" count="11" type="stmt"/>
|
|
2094
|
+
<line num="118" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
2095
|
+
<line num="119" count="11" type="stmt"/>
|
|
2096
|
+
<line num="120" count="11" type="stmt"/>
|
|
2097
|
+
<line num="125" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
2098
|
+
<line num="126" count="32" type="stmt"/>
|
|
2099
|
+
<line num="127" count="32" type="stmt"/>
|
|
2100
|
+
<line num="128" count="32" type="stmt"/>
|
|
2101
|
+
<line num="129" count="32" type="stmt"/>
|
|
2102
|
+
<line num="130" count="32" type="stmt"/>
|
|
2103
|
+
<line num="131" count="32" type="stmt"/>
|
|
2104
|
+
<line num="132" count="32" type="stmt"/>
|
|
2105
|
+
<line num="133" count="32" type="stmt"/>
|
|
2106
|
+
<line num="134" count="0" type="stmt"/>
|
|
2107
|
+
<line num="135" count="0" type="stmt"/>
|
|
2108
|
+
<line num="136" count="0" type="stmt"/>
|
|
2109
|
+
<line num="137" count="32" type="stmt"/>
|
|
2110
|
+
<line num="138" count="32" type="cond" truecount="1" falsecount="0"/>
|
|
2111
|
+
<line num="139" count="32" type="stmt"/>
|
|
2112
|
+
<line num="140" count="32" type="stmt"/>
|
|
2113
|
+
<line num="145" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
2114
|
+
<line num="146" count="2" type="stmt"/>
|
|
2115
|
+
<line num="147" count="2" type="stmt"/>
|
|
2116
|
+
<line num="148" count="2" type="stmt"/>
|
|
2117
|
+
<line num="149" count="2" type="stmt"/>
|
|
2118
|
+
<line num="150" count="2" type="stmt"/>
|
|
2119
|
+
<line num="151" count="2" type="stmt"/>
|
|
2120
|
+
<line num="152" count="2" type="stmt"/>
|
|
2121
|
+
<line num="153" count="2" type="stmt"/>
|
|
2122
|
+
<line num="154" count="2" type="stmt"/>
|
|
2123
|
+
<line num="155" count="0" type="stmt"/>
|
|
2124
|
+
<line num="156" count="0" type="stmt"/>
|
|
2125
|
+
<line num="157" count="0" type="stmt"/>
|
|
2126
|
+
<line num="158" count="2" type="stmt"/>
|
|
2127
|
+
<line num="159" count="0" type="stmt"/>
|
|
2128
|
+
<line num="160" count="0" type="stmt"/>
|
|
2129
|
+
<line num="161" count="0" type="stmt"/>
|
|
2130
|
+
<line num="162" count="0" type="stmt"/>
|
|
2131
|
+
<line num="163" count="0" type="stmt"/>
|
|
2132
|
+
<line num="164" count="0" type="stmt"/>
|
|
2133
|
+
<line num="165" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
2134
|
+
<line num="166" count="2" type="stmt"/>
|
|
2135
|
+
<line num="167" count="2" type="stmt"/>
|
|
2136
|
+
<line num="168" count="2" type="stmt"/>
|
|
2137
|
+
<line num="173" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
2138
|
+
<line num="174" count="34" type="stmt"/>
|
|
2139
|
+
<line num="175" count="34" type="stmt"/>
|
|
2140
|
+
<line num="176" count="34" type="stmt"/>
|
|
2141
|
+
<line num="183" count="34" type="stmt"/>
|
|
2142
|
+
<line num="184" count="34" type="stmt"/>
|
|
2143
|
+
<line num="185" count="34" type="cond" truecount="0" falsecount="1"/>
|
|
2144
|
+
<line num="186" count="0" type="stmt"/>
|
|
2145
|
+
<line num="187" count="0" type="stmt"/>
|
|
2146
|
+
<line num="189" count="34" type="cond" truecount="0" falsecount="1"/>
|
|
2147
|
+
<line num="190" count="0" type="stmt"/>
|
|
2148
|
+
<line num="191" count="0" type="stmt"/>
|
|
2149
|
+
<line num="192" count="0" type="stmt"/>
|
|
2150
|
+
<line num="193" count="0" type="stmt"/>
|
|
2151
|
+
<line num="194" count="0" type="stmt"/>
|
|
2152
|
+
<line num="195" count="0" type="stmt"/>
|
|
2153
|
+
<line num="196" count="0" type="stmt"/>
|
|
2154
|
+
<line num="198" count="34" type="stmt"/>
|
|
2155
|
+
<line num="199" count="34" type="stmt"/>
|
|
2156
|
+
<line num="200" count="34" type="stmt"/>
|
|
2157
|
+
<line num="201" count="34" type="stmt"/>
|
|
2158
|
+
<line num="202" count="34" type="stmt"/>
|
|
2159
|
+
<line num="207" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
2160
|
+
<line num="208" count="32" type="stmt"/>
|
|
2161
|
+
<line num="209" count="32" type="stmt"/>
|
|
2162
|
+
<line num="210" count="32" type="stmt"/>
|
|
2163
|
+
<line num="211" count="32" type="stmt"/>
|
|
2164
|
+
<line num="212" count="32" type="stmt"/>
|
|
2165
|
+
<line num="213" count="32" type="stmt"/>
|
|
2166
|
+
<line num="214" count="32" type="cond" truecount="1" falsecount="0"/>
|
|
2167
|
+
<line num="215" count="32" type="stmt"/>
|
|
2168
|
+
<line num="216" count="32" type="stmt"/>
|
|
2169
|
+
<line num="217" count="32" type="stmt"/>
|
|
2170
|
+
<line num="222" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
2171
|
+
<line num="223" count="2" type="stmt"/>
|
|
2172
|
+
<line num="224" count="2" type="stmt"/>
|
|
2173
|
+
<line num="225" count="2" type="stmt"/>
|
|
2174
|
+
<line num="226" count="2" type="stmt"/>
|
|
2175
|
+
<line num="227" count="2" type="stmt"/>
|
|
2176
|
+
<line num="228" count="2" type="stmt"/>
|
|
2177
|
+
<line num="229" count="2" type="stmt"/>
|
|
2178
|
+
<line num="230" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
2179
|
+
<line num="231" count="2" type="stmt"/>
|
|
2180
|
+
<line num="232" count="2" type="stmt"/>
|
|
2181
|
+
<line num="233" count="2" type="stmt"/>
|
|
2182
|
+
<line num="234" count="2" type="stmt"/>
|
|
2183
|
+
<line num="235" count="2" type="stmt"/>
|
|
2184
|
+
<line num="236" count="2" type="stmt"/>
|
|
2185
|
+
<line num="237" count="2" type="stmt"/>
|
|
2186
|
+
<line num="238" count="2" type="stmt"/>
|
|
2187
|
+
<line num="239" count="2" type="stmt"/>
|
|
2188
|
+
<line num="240" count="2" type="stmt"/>
|
|
2189
|
+
<line num="245" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
2190
|
+
<line num="246" count="34" type="stmt"/>
|
|
2191
|
+
<line num="247" count="34" type="stmt"/>
|
|
2192
|
+
<line num="253" count="34" type="stmt"/>
|
|
2193
|
+
<line num="254" count="34" type="stmt"/>
|
|
2194
|
+
<line num="255" count="34" type="cond" truecount="1" falsecount="0"/>
|
|
2195
|
+
<line num="257" count="34" type="stmt"/>
|
|
2196
|
+
<line num="258" count="34" type="cond" truecount="1" falsecount="0"/>
|
|
2197
|
+
<line num="259" count="34" type="cond" truecount="1" falsecount="0"/>
|
|
2198
|
+
<line num="260" count="34" type="stmt"/>
|
|
2199
|
+
<line num="261" count="34" type="stmt"/>
|
|
2200
|
+
<line num="262" count="34" type="stmt"/>
|
|
2201
|
+
<line num="263" count="34" type="stmt"/>
|
|
2202
|
+
<line num="264" count="34" type="stmt"/>
|
|
2203
|
+
<line num="266" count="34" type="stmt"/>
|
|
2204
|
+
<line num="267" count="34" type="stmt"/>
|
|
2205
|
+
<line num="272" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
2206
|
+
<line num="273" count="12" type="stmt"/>
|
|
2207
|
+
<line num="274" count="12" type="stmt"/>
|
|
2208
|
+
<line num="275" count="12" type="stmt"/>
|
|
2209
|
+
<line num="276" count="12" type="cond" truecount="0" falsecount="1"/>
|
|
2210
|
+
<line num="277" count="0" type="stmt"/>
|
|
2211
|
+
<line num="278" count="0" type="stmt"/>
|
|
2212
|
+
<line num="279" count="12" type="cond" truecount="0" falsecount="1"/>
|
|
2213
|
+
<line num="280" count="0" type="stmt"/>
|
|
2214
|
+
<line num="281" count="0" type="stmt"/>
|
|
2215
|
+
<line num="283" count="12" type="stmt"/>
|
|
2216
|
+
<line num="284" count="12" type="stmt"/>
|
|
2217
|
+
<line num="285" count="12" type="stmt"/>
|
|
2218
|
+
<line num="286" count="12" type="stmt"/>
|
|
2219
|
+
<line num="287" count="12" type="stmt"/>
|
|
2220
|
+
<line num="293" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
2221
|
+
<line num="294" count="6" type="stmt"/>
|
|
2222
|
+
<line num="295" count="6" type="stmt"/>
|
|
2223
|
+
<line num="296" count="6" type="stmt"/>
|
|
2224
|
+
<line num="297" count="6" type="stmt"/>
|
|
2225
|
+
<line num="298" count="6" type="stmt"/>
|
|
2226
|
+
<line num="300" count="6" type="cond" truecount="2" falsecount="0"/>
|
|
2227
|
+
<line num="301" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
2228
|
+
<line num="302" count="8" type="stmt"/>
|
|
2229
|
+
<line num="303" count="8" type="stmt"/>
|
|
2230
|
+
<line num="306" count="8" type="stmt"/>
|
|
2231
|
+
<line num="307" count="8" type="stmt"/>
|
|
2232
|
+
<line num="308" count="8" type="stmt"/>
|
|
2233
|
+
<line num="309" count="8" type="stmt"/>
|
|
2234
|
+
<line num="311" count="8" type="cond" truecount="0" falsecount="1"/>
|
|
2235
|
+
<line num="314" count="0" type="stmt"/>
|
|
2236
|
+
<line num="315" count="0" type="stmt"/>
|
|
2237
|
+
<line num="316" count="0" type="stmt"/>
|
|
2238
|
+
<line num="318" count="0" type="stmt"/>
|
|
2239
|
+
<line num="319" count="0" type="stmt"/>
|
|
2240
|
+
<line num="320" count="0" type="stmt"/>
|
|
2241
|
+
<line num="321" count="0" type="stmt"/>
|
|
2242
|
+
<line num="322" count="0" type="stmt"/>
|
|
2243
|
+
<line num="323" count="0" type="stmt"/>
|
|
2244
|
+
<line num="324" count="0" type="stmt"/>
|
|
2245
|
+
<line num="325" count="0" type="stmt"/>
|
|
2246
|
+
<line num="326" count="0" type="stmt"/>
|
|
2247
|
+
<line num="329" count="8" type="stmt"/>
|
|
2248
|
+
<line num="330" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
2249
|
+
<line num="331" count="11" type="stmt"/>
|
|
2250
|
+
<line num="332" count="11" type="stmt"/>
|
|
2251
|
+
<line num="333" count="11" type="stmt"/>
|
|
2252
|
+
<line num="334" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
2253
|
+
<line num="335" count="11" type="stmt"/>
|
|
2254
|
+
<line num="336" count="11" type="stmt"/>
|
|
2255
|
+
<line num="337" count="11" type="cond" truecount="0" falsecount="1"/>
|
|
2256
|
+
<line num="338" count="0" type="stmt"/>
|
|
2257
|
+
<line num="339" count="0" type="stmt"/>
|
|
2258
|
+
<line num="340" count="0" type="stmt"/>
|
|
2259
|
+
<line num="341" count="0" type="stmt"/>
|
|
2260
|
+
<line num="343" count="0" type="stmt"/>
|
|
2261
|
+
<line num="344" count="0" type="stmt"/>
|
|
2262
|
+
<line num="345" count="11" type="stmt"/>
|
|
2263
|
+
<line num="346" count="8" type="stmt"/>
|
|
2264
|
+
<line num="348" count="8" type="stmt"/>
|
|
2265
|
+
<line num="349" count="8" type="stmt"/>
|
|
2266
|
+
<line num="350" count="8" type="stmt"/>
|
|
2267
|
+
<line num="352" count="6" type="cond" truecount="0" falsecount="1"/>
|
|
2268
|
+
<line num="353" count="0" type="stmt"/>
|
|
2269
|
+
<line num="354" count="0" type="stmt"/>
|
|
2270
|
+
<line num="355" count="0" type="stmt"/>
|
|
2271
|
+
<line num="356" count="0" type="stmt"/>
|
|
2272
|
+
<line num="357" count="6" type="stmt"/>
|
|
2273
|
+
<line num="363" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
2274
|
+
<line num="364" count="8" type="stmt"/>
|
|
2275
|
+
<line num="365" count="8" type="stmt"/>
|
|
2276
|
+
<line num="366" count="8" type="stmt"/>
|
|
2277
|
+
<line num="367" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
2278
|
+
<line num="368" count="16" type="cond" truecount="1" falsecount="0"/>
|
|
2279
|
+
<line num="369" count="2" type="stmt"/>
|
|
2280
|
+
<line num="370" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
2281
|
+
<line num="373" count="14" type="stmt"/>
|
|
2282
|
+
<line num="374" count="16" type="cond" truecount="1" falsecount="0"/>
|
|
2283
|
+
<line num="375" count="3" type="stmt"/>
|
|
2284
|
+
<line num="376" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
2285
|
+
<line num="379" count="11" type="stmt"/>
|
|
2286
|
+
<line num="380" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
2287
|
+
<line num="381" count="11" type="stmt"/>
|
|
2288
|
+
<line num="383" count="11" type="stmt"/>
|
|
2289
|
+
<line num="384" count="8" type="stmt"/>
|
|
2290
|
+
<line num="385" count="8" type="stmt"/>
|
|
2291
|
+
<line num="391" count="1" type="stmt"/>
|
|
2292
|
+
<line num="392" count="0" type="stmt"/>
|
|
2293
|
+
<line num="393" count="0" type="stmt"/>
|
|
2294
|
+
<line num="395" count="0" type="stmt"/>
|
|
2295
|
+
<line num="396" count="0" type="stmt"/>
|
|
2296
|
+
<line num="397" count="0" type="stmt"/>
|
|
2297
|
+
<line num="398" count="0" type="stmt"/>
|
|
2298
|
+
<line num="399" count="0" type="stmt"/>
|
|
2299
|
+
<line num="400" count="0" type="stmt"/>
|
|
2300
|
+
<line num="401" count="0" type="stmt"/>
|
|
2301
|
+
<line num="402" count="0" type="stmt"/>
|
|
2302
|
+
<line num="403" count="0" type="stmt"/>
|
|
2303
|
+
<line num="404" count="0" type="stmt"/>
|
|
2304
|
+
<line num="405" count="0" type="stmt"/>
|
|
2305
|
+
<line num="407" count="0" type="stmt"/>
|
|
2306
|
+
<line num="408" count="0" type="stmt"/>
|
|
2307
|
+
<line num="413" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
2308
|
+
<line num="414" count="10" type="stmt"/>
|
|
2309
|
+
<line num="415" count="10" type="stmt"/>
|
|
2310
|
+
<line num="420" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
2311
|
+
<line num="421" count="34" type="stmt"/>
|
|
2312
|
+
<line num="422" count="34" type="stmt"/>
|
|
2313
|
+
<line num="423" count="34" type="stmt"/>
|
|
2314
|
+
<line num="424" count="34" type="cond" truecount="1" falsecount="0"/>
|
|
2315
|
+
<line num="425" count="34" type="stmt"/>
|
|
2316
|
+
<line num="426" count="34" type="stmt"/>
|
|
2317
|
+
<line num="427" count="34" type="stmt"/>
|
|
2318
|
+
<line num="428" count="34" type="stmt"/>
|
|
2319
|
+
<line num="429" count="1" type="stmt"/>
|
|
2320
|
+
</file>
|
|
1420
2321
|
<file name="service-locator-event-bus.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/src/service-locator-event-bus.mts">
|
|
1421
|
-
<metrics statements="53" coveredstatements="46" conditionals="
|
|
2322
|
+
<metrics statements="53" coveredstatements="46" conditionals="18" coveredconditionals="17" methods="4" coveredmethods="4"/>
|
|
1422
2323
|
<line num="7" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1423
|
-
<line num="8" count="
|
|
1424
|
-
<line num="9" count="
|
|
1425
|
-
<line num="11" count="
|
|
1426
|
-
<line num="12" count="
|
|
1427
|
-
<line num="13" count="
|
|
1428
|
-
<line num="14" count="
|
|
1429
|
-
<line num="15" count="
|
|
1430
|
-
<line num="16" count="
|
|
1431
|
-
<line num="17" count="
|
|
1432
|
-
<line num="18" count="
|
|
1433
|
-
<line num="19" count="
|
|
1434
|
-
<line num="21" count="
|
|
1435
|
-
<line num="22" count="
|
|
1436
|
-
<line num="23" count="
|
|
1437
|
-
<line num="24" count="
|
|
1438
|
-
<line num="26" count="
|
|
1439
|
-
<line num="28" count="
|
|
1440
|
-
<line num="29" count="
|
|
1441
|
-
<line num="30" count="
|
|
1442
|
-
<line num="31" count="
|
|
1443
|
-
<line num="32" count="
|
|
1444
|
-
<line num="33" count="
|
|
1445
|
-
<line num="34" count="
|
|
1446
|
-
<line num="35" count="
|
|
1447
|
-
<line num="36" count="
|
|
1448
|
-
<line num="37" count="
|
|
1449
|
-
<line num="39" count="
|
|
1450
|
-
<line num="40" count="
|
|
1451
|
-
<line num="41" count="
|
|
1452
|
-
<line num="42" count="
|
|
1453
|
-
<line num="44" count="
|
|
1454
|
-
<line num="46" count="
|
|
1455
|
-
<line num="48" count="
|
|
1456
|
-
<line num="49" count="
|
|
1457
|
-
<line num="50" count="
|
|
1458
|
-
<line num="51" count="
|
|
1459
|
-
<line num="52" count="
|
|
1460
|
-
<line num="53" count="
|
|
2324
|
+
<line num="8" count="162" type="stmt"/>
|
|
2325
|
+
<line num="9" count="162" type="cond" truecount="1" falsecount="0"/>
|
|
2326
|
+
<line num="11" count="162" type="cond" truecount="1" falsecount="0"/>
|
|
2327
|
+
<line num="12" count="69" type="stmt"/>
|
|
2328
|
+
<line num="13" count="69" type="stmt"/>
|
|
2329
|
+
<line num="14" count="69" type="stmt"/>
|
|
2330
|
+
<line num="15" count="69" type="stmt"/>
|
|
2331
|
+
<line num="16" count="69" type="cond" truecount="1" falsecount="0"/>
|
|
2332
|
+
<line num="17" count="69" type="cond" truecount="1" falsecount="0"/>
|
|
2333
|
+
<line num="18" count="58" type="stmt"/>
|
|
2334
|
+
<line num="19" count="58" type="stmt"/>
|
|
2335
|
+
<line num="21" count="69" type="stmt"/>
|
|
2336
|
+
<line num="22" count="69" type="cond" truecount="1" falsecount="0"/>
|
|
2337
|
+
<line num="23" count="61" type="stmt"/>
|
|
2338
|
+
<line num="24" count="61" type="stmt"/>
|
|
2339
|
+
<line num="26" count="69" type="stmt"/>
|
|
2340
|
+
<line num="28" count="69" type="cond" truecount="1" falsecount="0"/>
|
|
2341
|
+
<line num="29" count="23" type="stmt"/>
|
|
2342
|
+
<line num="30" count="23" type="cond" truecount="1" falsecount="0"/>
|
|
2343
|
+
<line num="31" count="20" type="stmt"/>
|
|
2344
|
+
<line num="32" count="20" type="stmt"/>
|
|
2345
|
+
<line num="33" count="23" type="cond" truecount="1" falsecount="0"/>
|
|
2346
|
+
<line num="34" count="20" type="stmt"/>
|
|
2347
|
+
<line num="35" count="20" type="stmt"/>
|
|
2348
|
+
<line num="36" count="23" type="stmt"/>
|
|
2349
|
+
<line num="37" count="69" type="stmt"/>
|
|
2350
|
+
<line num="39" count="162" type="cond" truecount="1" falsecount="0"/>
|
|
2351
|
+
<line num="40" count="51" type="cond" truecount="1" falsecount="0"/>
|
|
2352
|
+
<line num="41" count="25" type="stmt"/>
|
|
2353
|
+
<line num="42" count="25" type="cond" truecount="1" falsecount="0"/>
|
|
2354
|
+
<line num="44" count="26" type="stmt"/>
|
|
2355
|
+
<line num="46" count="51" type="stmt"/>
|
|
2356
|
+
<line num="48" count="51" type="stmt"/>
|
|
2357
|
+
<line num="49" count="51" type="cond" truecount="2" falsecount="0"/>
|
|
2358
|
+
<line num="50" count="51" type="cond" truecount="1" falsecount="0"/>
|
|
2359
|
+
<line num="51" count="25" type="stmt"/>
|
|
2360
|
+
<line num="52" count="25" type="cond" truecount="1" falsecount="0"/>
|
|
2361
|
+
<line num="53" count="25" type="stmt"/>
|
|
1461
2362
|
<line num="54" count="0" type="stmt"/>
|
|
1462
2363
|
<line num="55" count="0" type="stmt"/>
|
|
1463
2364
|
<line num="56" count="0" type="stmt"/>
|
|
1464
2365
|
<line num="57" count="0" type="stmt"/>
|
|
1465
2366
|
<line num="58" count="0" type="stmt"/>
|
|
1466
|
-
<line num="59" count="
|
|
1467
|
-
<line num="61" count="
|
|
2367
|
+
<line num="59" count="25" type="stmt"/>
|
|
2368
|
+
<line num="61" count="25" type="cond" truecount="0" falsecount="1"/>
|
|
1468
2369
|
<line num="62" count="0" type="stmt"/>
|
|
1469
2370
|
<line num="63" count="0" type="stmt"/>
|
|
1470
|
-
<line num="64" count="
|
|
1471
|
-
<line num="65" count="
|
|
1472
|
-
<line num="66" count="
|
|
1473
|
-
<line num="67" count="
|
|
1474
|
-
<line num="68" count="
|
|
2371
|
+
<line num="64" count="25" type="stmt"/>
|
|
2372
|
+
<line num="65" count="51" type="cond" truecount="1" falsecount="0"/>
|
|
2373
|
+
<line num="66" count="25" type="stmt"/>
|
|
2374
|
+
<line num="67" count="51" type="stmt"/>
|
|
2375
|
+
<line num="68" count="162" type="stmt"/>
|
|
1475
2376
|
</file>
|
|
1476
2377
|
<file name="service-locator-instance-holder.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/src/service-locator-instance-holder.mts">
|
|
1477
2378
|
<metrics statements="5" coveredstatements="5" conditionals="1" coveredconditionals="1" methods="0" coveredmethods="0"/>
|
|
@@ -1482,783 +2383,339 @@
|
|
|
1482
2383
|
<line num="8" count="1" type="stmt"/>
|
|
1483
2384
|
</file>
|
|
1484
2385
|
<file name="service-locator-manager.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/src/service-locator-manager.mts">
|
|
1485
|
-
<metrics statements="
|
|
2386
|
+
<metrics statements="57" coveredstatements="57" conditionals="15" coveredconditionals="15" methods="5" coveredmethods="5"/>
|
|
1486
2387
|
<line num="4" count="1" type="stmt"/>
|
|
1487
2388
|
<line num="5" count="1" type="stmt"/>
|
|
1488
|
-
<line num="
|
|
1489
|
-
<line num="
|
|
2389
|
+
<line num="6" count="1" type="stmt"/>
|
|
2390
|
+
<line num="7" count="1" type="stmt"/>
|
|
2391
|
+
<line num="9" count="1" type="stmt"/>
|
|
2392
|
+
<line num="10" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
2393
|
+
<line num="11" count="166" type="stmt"/>
|
|
2394
|
+
<line num="12" count="166" type="stmt"/>
|
|
1490
2395
|
<line num="14" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1491
|
-
<line num="15" count="
|
|
1492
|
-
<line num="
|
|
1493
|
-
<line num="
|
|
1494
|
-
<line num="
|
|
1495
|
-
<line num="
|
|
1496
|
-
<line num="
|
|
1497
|
-
<line num="
|
|
1498
|
-
<line num="
|
|
1499
|
-
<line num="
|
|
1500
|
-
<line num="
|
|
1501
|
-
<line num="
|
|
1502
|
-
<line num="
|
|
1503
|
-
<line num="
|
|
1504
|
-
<line num="
|
|
1505
|
-
<line num="
|
|
1506
|
-
<line num="
|
|
1507
|
-
<line num="
|
|
1508
|
-
<line num="
|
|
1509
|
-
<line num="
|
|
1510
|
-
<line num="
|
|
1511
|
-
<line num="
|
|
1512
|
-
<line num="
|
|
1513
|
-
<line num="
|
|
1514
|
-
<line num="43" count="
|
|
1515
|
-
<line num="44" count="
|
|
1516
|
-
<line num="45" count="
|
|
1517
|
-
<line num="
|
|
1518
|
-
<line num="
|
|
1519
|
-
<line num="
|
|
1520
|
-
<line num="50" count="
|
|
1521
|
-
<line num="51" count="
|
|
1522
|
-
<line num="52" count="
|
|
1523
|
-
<line num="53" count="
|
|
1524
|
-
<line num="54" count="
|
|
1525
|
-
<line num="55" count="
|
|
1526
|
-
<line num="56" count="
|
|
1527
|
-
<line num="
|
|
1528
|
-
<line num="
|
|
1529
|
-
<line num="
|
|
1530
|
-
<line num="
|
|
1531
|
-
<line num="
|
|
1532
|
-
<line num="
|
|
1533
|
-
<line num="
|
|
1534
|
-
<line num="
|
|
1535
|
-
<line num="
|
|
1536
|
-
<line num="
|
|
1537
|
-
<line num="
|
|
1538
|
-
<line num="
|
|
1539
|
-
<line num="71" count="3" type="stmt"/>
|
|
1540
|
-
<line num="72" count="3" type="stmt"/>
|
|
1541
|
-
<line num="73" count="3" type="stmt"/>
|
|
1542
|
-
<line num="74" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
1543
|
-
<line num="75" count="2" type="stmt"/>
|
|
1544
|
-
<line num="76" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
1545
|
-
<line num="77" count="1" type="stmt"/>
|
|
1546
|
-
<line num="78" count="4" type="stmt"/>
|
|
1547
|
-
<line num="80" count="130" type="cond" truecount="1" falsecount="0"/>
|
|
1548
|
-
<line num="81" count="18" type="stmt"/>
|
|
1549
|
-
<line num="82" count="18" type="stmt"/>
|
|
1550
|
-
<line num="84" count="130" type="cond" truecount="1" falsecount="0"/>
|
|
1551
|
-
<line num="85" count="26" type="stmt"/>
|
|
1552
|
-
<line num="89" count="26" type="stmt"/>
|
|
1553
|
-
<line num="90" count="26" type="stmt"/>
|
|
1554
|
-
<line num="91" count="26" type="cond" truecount="1" falsecount="0"/>
|
|
1555
|
-
<line num="92" count="72" type="stmt"/>
|
|
1556
|
-
<line num="93" count="26" type="stmt"/>
|
|
1557
|
-
<line num="94" count="26" type="stmt"/>
|
|
1558
|
-
<line num="95" count="26" type="stmt"/>
|
|
1559
|
-
<line num="107" count="130" type="cond" truecount="1" falsecount="0"/>
|
|
1560
|
-
<line num="108" count="240" type="stmt"/>
|
|
1561
|
-
<line num="109" count="240" type="stmt"/>
|
|
1562
|
-
<line num="110" count="240" type="stmt"/>
|
|
1563
|
-
<line num="111" count="240" type="stmt"/>
|
|
1564
|
-
<line num="112" count="240" type="stmt"/>
|
|
1565
|
-
<line num="116" count="240" type="stmt"/>
|
|
1566
|
-
<line num="117" count="240" type="stmt"/>
|
|
1567
|
-
<line num="119" count="240" type="stmt"/>
|
|
1568
|
-
<line num="120" count="240" type="stmt"/>
|
|
1569
|
-
<line num="121" count="240" type="stmt"/>
|
|
1570
|
-
<line num="122" count="240" type="stmt"/>
|
|
1571
|
-
<line num="123" count="240" type="stmt"/>
|
|
1572
|
-
<line num="124" count="240" type="stmt"/>
|
|
1573
|
-
<line num="125" count="240" type="stmt"/>
|
|
1574
|
-
<line num="126" count="240" type="stmt"/>
|
|
1575
|
-
<line num="127" count="240" type="stmt"/>
|
|
1576
|
-
<line num="128" count="240" type="stmt"/>
|
|
1577
|
-
<line num="129" count="240" type="stmt"/>
|
|
1578
|
-
<line num="130" count="240" type="stmt"/>
|
|
1579
|
-
<line num="131" count="240" type="stmt"/>
|
|
1580
|
-
<line num="133" count="240" type="stmt"/>
|
|
1581
|
-
<line num="134" count="240" type="stmt"/>
|
|
1582
|
-
<line num="147" count="130" type="cond" truecount="1" falsecount="0"/>
|
|
1583
|
-
<line num="148" count="120" type="stmt"/>
|
|
1584
|
-
<line num="149" count="120" type="stmt"/>
|
|
1585
|
-
<line num="150" count="120" type="stmt"/>
|
|
1586
|
-
<line num="151" count="120" type="stmt"/>
|
|
1587
|
-
<line num="152" count="120" type="stmt"/>
|
|
1588
|
-
<line num="153" count="120" type="stmt"/>
|
|
1589
|
-
<line num="154" count="120" type="stmt"/>
|
|
1590
|
-
<line num="155" count="120" type="stmt"/>
|
|
1591
|
-
<line num="156" count="120" type="stmt"/>
|
|
1592
|
-
<line num="157" count="120" type="stmt"/>
|
|
1593
|
-
<line num="158" count="120" type="stmt"/>
|
|
1594
|
-
<line num="159" count="120" type="stmt"/>
|
|
1595
|
-
<line num="160" count="120" type="stmt"/>
|
|
1596
|
-
<line num="161" count="120" type="stmt"/>
|
|
1597
|
-
<line num="162" count="120" type="stmt"/>
|
|
1598
|
-
<line num="163" count="120" type="stmt"/>
|
|
1599
|
-
<line num="164" count="120" type="stmt"/>
|
|
1600
|
-
<line num="165" count="120" type="stmt"/>
|
|
1601
|
-
<line num="166" count="120" type="stmt"/>
|
|
1602
|
-
<line num="167" count="120" type="stmt"/>
|
|
1603
|
-
<line num="169" count="120" type="stmt"/>
|
|
1604
|
-
<line num="171" count="120" type="stmt"/>
|
|
1605
|
-
<line num="172" count="120" type="stmt"/>
|
|
1606
|
-
<line num="173" count="130" type="stmt"/>
|
|
2396
|
+
<line num="15" count="474" type="stmt"/>
|
|
2397
|
+
<line num="19" count="474" type="stmt"/>
|
|
2398
|
+
<line num="20" count="474" type="stmt"/>
|
|
2399
|
+
<line num="21" count="474" type="cond" truecount="1" falsecount="0"/>
|
|
2400
|
+
<line num="22" count="126" type="cond" truecount="1" falsecount="0"/>
|
|
2401
|
+
<line num="23" count="2" type="stmt"/>
|
|
2402
|
+
<line num="24" count="2" type="stmt"/>
|
|
2403
|
+
<line num="25" count="2" type="stmt"/>
|
|
2404
|
+
<line num="26" count="2" type="stmt"/>
|
|
2405
|
+
<line num="27" count="126" type="cond" truecount="2" falsecount="0"/>
|
|
2406
|
+
<line num="28" count="3" type="stmt"/>
|
|
2407
|
+
<line num="29" count="3" type="stmt"/>
|
|
2408
|
+
<line num="30" count="3" type="stmt"/>
|
|
2409
|
+
<line num="31" count="3" type="stmt"/>
|
|
2410
|
+
<line num="32" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
2411
|
+
<line num="34" count="121" type="stmt"/>
|
|
2412
|
+
<line num="35" count="474" type="cond" truecount="1" falsecount="0"/>
|
|
2413
|
+
<line num="36" count="348" type="cond" truecount="1" falsecount="0"/>
|
|
2414
|
+
<line num="37" count="348" type="stmt"/>
|
|
2415
|
+
<line num="38" count="348" type="stmt"/>
|
|
2416
|
+
<line num="39" count="348" type="stmt"/>
|
|
2417
|
+
<line num="40" count="348" type="stmt"/>
|
|
2418
|
+
<line num="41" count="474" type="stmt"/>
|
|
2419
|
+
<line num="43" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
2420
|
+
<line num="44" count="247" type="stmt"/>
|
|
2421
|
+
<line num="45" count="247" type="stmt"/>
|
|
2422
|
+
<line num="47" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
2423
|
+
<line num="48" count="3" type="stmt"/>
|
|
2424
|
+
<line num="49" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
2425
|
+
<line num="50" count="1" type="stmt"/>
|
|
2426
|
+
<line num="51" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
2427
|
+
<line num="52" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
2428
|
+
<line num="53" count="1" type="stmt"/>
|
|
2429
|
+
<line num="54" count="1" type="stmt"/>
|
|
2430
|
+
<line num="55" count="1" type="stmt"/>
|
|
2431
|
+
<line num="56" count="3" type="stmt"/>
|
|
2432
|
+
<line num="72" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
2433
|
+
<line num="73" count="137" type="stmt"/>
|
|
2434
|
+
<line num="74" count="137" type="stmt"/>
|
|
2435
|
+
<line num="75" count="137" type="stmt"/>
|
|
2436
|
+
<line num="76" count="137" type="stmt"/>
|
|
2437
|
+
<line num="77" count="137" type="stmt"/>
|
|
2438
|
+
<line num="78" count="137" type="stmt"/>
|
|
2439
|
+
<line num="79" count="137" type="stmt"/>
|
|
2440
|
+
<line num="81" count="137" type="stmt"/>
|
|
2441
|
+
<line num="83" count="137" type="stmt"/>
|
|
2442
|
+
<line num="84" count="137" type="stmt"/>
|
|
2443
|
+
<line num="85" count="1" type="stmt"/>
|
|
1607
2444
|
</file>
|
|
1608
2445
|
<file name="service-locator.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/src/service-locator.mts">
|
|
1609
|
-
<metrics statements="
|
|
2446
|
+
<metrics statements="153" coveredstatements="136" conditionals="27" coveredconditionals="26" methods="20" coveredmethods="17"/>
|
|
2447
|
+
<line num="14" count="1" type="stmt"/>
|
|
2448
|
+
<line num="15" count="1" type="stmt"/>
|
|
2449
|
+
<line num="16" count="1" type="stmt"/>
|
|
2450
|
+
<line num="17" count="1" type="stmt"/>
|
|
1610
2451
|
<line num="18" count="1" type="stmt"/>
|
|
1611
2452
|
<line num="19" count="1" type="stmt"/>
|
|
1612
|
-
<line num="
|
|
1613
|
-
<line num="
|
|
1614
|
-
<line num="
|
|
1615
|
-
<line num="
|
|
1616
|
-
<line num="
|
|
1617
|
-
<line num="
|
|
1618
|
-
<line num="
|
|
1619
|
-
<line num="
|
|
1620
|
-
<line num="
|
|
1621
|
-
<line num="
|
|
1622
|
-
<line num="
|
|
1623
|
-
<line num="
|
|
1624
|
-
<line num="
|
|
1625
|
-
<line num="
|
|
1626
|
-
<line num="
|
|
1627
|
-
<line num="
|
|
1628
|
-
<line num="
|
|
1629
|
-
<line num="
|
|
1630
|
-
<line num="
|
|
1631
|
-
<line num="
|
|
1632
|
-
<line num="
|
|
1633
|
-
<line num="
|
|
1634
|
-
<line num="
|
|
1635
|
-
<line num="
|
|
1636
|
-
<line num="
|
|
1637
|
-
<line num="
|
|
1638
|
-
<line num="
|
|
1639
|
-
<line num="
|
|
1640
|
-
<line num="
|
|
1641
|
-
<line num="
|
|
1642
|
-
<line num="
|
|
1643
|
-
<line num="
|
|
1644
|
-
<line num="
|
|
1645
|
-
<line num="
|
|
2453
|
+
<line num="20" count="1" type="stmt"/>
|
|
2454
|
+
<line num="21" count="1" type="stmt"/>
|
|
2455
|
+
<line num="22" count="1" type="stmt"/>
|
|
2456
|
+
<line num="24" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
2457
|
+
<line num="25" count="143" type="stmt"/>
|
|
2458
|
+
<line num="26" count="143" type="stmt"/>
|
|
2459
|
+
<line num="27" count="143" type="stmt"/>
|
|
2460
|
+
<line num="28" count="143" type="stmt"/>
|
|
2461
|
+
<line num="29" count="143" type="stmt"/>
|
|
2462
|
+
<line num="30" count="143" type="stmt"/>
|
|
2463
|
+
<line num="31" count="143" type="stmt"/>
|
|
2464
|
+
<line num="33" count="143" type="cond" truecount="1" falsecount="0"/>
|
|
2465
|
+
<line num="34" count="143" type="stmt"/>
|
|
2466
|
+
<line num="35" count="143" type="stmt"/>
|
|
2467
|
+
<line num="36" count="143" type="stmt"/>
|
|
2468
|
+
<line num="37" count="143" type="stmt"/>
|
|
2469
|
+
<line num="38" count="143" type="stmt"/>
|
|
2470
|
+
<line num="39" count="143" type="stmt"/>
|
|
2471
|
+
<line num="40" count="143" type="stmt"/>
|
|
2472
|
+
<line num="41" count="143" type="stmt"/>
|
|
2473
|
+
<line num="42" count="143" type="stmt"/>
|
|
2474
|
+
<line num="43" count="143" type="stmt"/>
|
|
2475
|
+
<line num="44" count="143" type="stmt"/>
|
|
2476
|
+
<line num="45" count="143" type="stmt"/>
|
|
2477
|
+
<line num="46" count="143" type="stmt"/>
|
|
2478
|
+
<line num="47" count="143" type="stmt"/>
|
|
2479
|
+
<line num="48" count="143" type="stmt"/>
|
|
2480
|
+
<line num="49" count="143" type="stmt"/>
|
|
2481
|
+
<line num="50" count="143" type="stmt"/>
|
|
2482
|
+
<line num="51" count="143" type="stmt"/>
|
|
2483
|
+
<line num="52" count="143" type="stmt"/>
|
|
2484
|
+
<line num="53" count="143" type="stmt"/>
|
|
2485
|
+
<line num="54" count="143" type="stmt"/>
|
|
2486
|
+
<line num="55" count="143" type="stmt"/>
|
|
2487
|
+
<line num="56" count="143" type="stmt"/>
|
|
2488
|
+
<line num="57" count="143" type="stmt"/>
|
|
2489
|
+
<line num="63" count="143" type="cond" truecount="1" falsecount="0"/>
|
|
2490
|
+
<line num="64" count="44" type="stmt"/>
|
|
2491
|
+
<line num="65" count="44" type="stmt"/>
|
|
2492
|
+
<line num="67" count="143" type="cond" truecount="1" falsecount="0"/>
|
|
2493
|
+
<line num="68" count="144" type="stmt"/>
|
|
2494
|
+
<line num="69" count="144" type="stmt"/>
|
|
2495
|
+
<line num="71" count="143" type="stmt"/>
|
|
1646
2496
|
<line num="72" count="0" type="stmt"/>
|
|
1647
2497
|
<line num="73" count="0" type="stmt"/>
|
|
1648
|
-
<line num="
|
|
1649
|
-
<line num="
|
|
1650
|
-
<line num="77" count="
|
|
1651
|
-
<line num="
|
|
1652
|
-
<line num="
|
|
1653
|
-
<line num="
|
|
1654
|
-
<line num="
|
|
1655
|
-
<line num="
|
|
1656
|
-
<line num="
|
|
1657
|
-
<line num="
|
|
1658
|
-
<line num="
|
|
1659
|
-
<line num="
|
|
1660
|
-
<line num="
|
|
1661
|
-
<line num="
|
|
1662
|
-
<line num="
|
|
1663
|
-
<line num="
|
|
1664
|
-
<line num="
|
|
1665
|
-
<line num="
|
|
1666
|
-
<line num="
|
|
1667
|
-
<line num="
|
|
1668
|
-
<line num="
|
|
1669
|
-
<line num="
|
|
1670
|
-
<line num="
|
|
1671
|
-
<line num="
|
|
1672
|
-
<line num="
|
|
1673
|
-
<line num="
|
|
1674
|
-
<line num="108" count="
|
|
1675
|
-
<line num="
|
|
1676
|
-
<line num="
|
|
1677
|
-
<line num="
|
|
1678
|
-
<line num="
|
|
1679
|
-
<line num="
|
|
1680
|
-
<line num="
|
|
1681
|
-
<line num="
|
|
1682
|
-
<line num="
|
|
1683
|
-
<line num="
|
|
1684
|
-
<line num="
|
|
1685
|
-
<line num="123" count="
|
|
1686
|
-
<line num="124" count="
|
|
1687
|
-
<line num="
|
|
1688
|
-
<line num="
|
|
1689
|
-
<line num="
|
|
1690
|
-
<line num="
|
|
1691
|
-
<line num="
|
|
1692
|
-
<line num="
|
|
1693
|
-
<line num="
|
|
1694
|
-
<line num="
|
|
1695
|
-
<line num="
|
|
1696
|
-
<line num="
|
|
1697
|
-
<line num="
|
|
1698
|
-
<line num="
|
|
1699
|
-
<line num="
|
|
1700
|
-
<line num="146" count="
|
|
1701
|
-
<line num="147" count="
|
|
1702
|
-
<line num="148" count="
|
|
1703
|
-
<line num="149" count="
|
|
1704
|
-
<line num="150" count="
|
|
1705
|
-
<line num="
|
|
1706
|
-
<line num="153" count="
|
|
1707
|
-
<line num="154" count="12" type="
|
|
1708
|
-
<line num="
|
|
1709
|
-
<line num="
|
|
1710
|
-
<line num="
|
|
1711
|
-
<line num="
|
|
1712
|
-
<line num="
|
|
1713
|
-
<line num="
|
|
1714
|
-
<line num="
|
|
1715
|
-
<line num="
|
|
1716
|
-
<line num="
|
|
1717
|
-
<line num="
|
|
1718
|
-
<line num="
|
|
1719
|
-
<line num="
|
|
1720
|
-
<line num="
|
|
1721
|
-
<line num="
|
|
1722
|
-
<line num="
|
|
1723
|
-
<line num="
|
|
1724
|
-
<line num="
|
|
1725
|
-
<line num="
|
|
1726
|
-
<line num="
|
|
1727
|
-
<line num="
|
|
1728
|
-
<line num="
|
|
1729
|
-
<line num="
|
|
1730
|
-
<line num="
|
|
1731
|
-
<line num="
|
|
1732
|
-
<line num="
|
|
1733
|
-
<line num="
|
|
1734
|
-
<line num="
|
|
1735
|
-
<line num="
|
|
1736
|
-
<line num="
|
|
1737
|
-
<line num="
|
|
1738
|
-
<line num="
|
|
1739
|
-
<line num="
|
|
1740
|
-
<line num="
|
|
1741
|
-
<line num="
|
|
1742
|
-
<line num="
|
|
1743
|
-
<line num="
|
|
1744
|
-
<line num="
|
|
1745
|
-
<line num="
|
|
1746
|
-
<line num="
|
|
1747
|
-
<line num="204" count="108" type="cond" truecount="1" falsecount="0"/>
|
|
1748
|
-
<line num="205" count="16" type="stmt"/>
|
|
1749
|
-
<line num="206" count="16" type="stmt"/>
|
|
1750
|
-
<line num="207" count="16" type="stmt"/>
|
|
1751
|
-
<line num="208" count="16" type="stmt"/>
|
|
1752
|
-
<line num="209" count="16" type="cond" truecount="1" falsecount="0"/>
|
|
1753
|
-
<line num="210" count="16" type="stmt"/>
|
|
1754
|
-
<line num="211" count="16" type="stmt"/>
|
|
1755
|
-
<line num="213" count="16" type="stmt"/>
|
|
1756
|
-
<line num="214" count="16" type="cond" truecount="1" falsecount="0"/>
|
|
1757
|
-
<line num="215" count="16" type="cond" truecount="1" falsecount="0"/>
|
|
1758
|
-
<line num="216" count="16" type="stmt"/>
|
|
1759
|
-
<line num="217" count="16" type="stmt"/>
|
|
1760
|
-
<line num="218" count="16" type="stmt"/>
|
|
1761
|
-
<line num="220" count="16" type="stmt"/>
|
|
1762
|
-
<line num="221" count="16" type="stmt"/>
|
|
1763
|
-
<line num="223" count="108" type="cond" truecount="1" falsecount="0"/>
|
|
1764
|
-
<line num="224" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1765
|
-
<line num="225" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1766
|
-
<line num="226" count="1" type="stmt"/>
|
|
1767
|
-
<line num="227" count="1" type="stmt"/>
|
|
1768
|
-
<line num="228" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
1769
|
-
<line num="229" count="1" type="stmt"/>
|
|
1770
|
-
<line num="230" count="1" type="stmt"/>
|
|
1771
|
-
<line num="235" count="108" type="cond" truecount="1" falsecount="0"/>
|
|
1772
|
-
<line num="236" count="1" type="stmt"/>
|
|
1773
|
-
<line num="237" count="1" type="stmt"/>
|
|
1774
|
-
<line num="238" count="1" type="stmt"/>
|
|
1775
|
-
<line num="239" count="1" type="cond" truecount="0" falsecount="1"/>
|
|
1776
|
-
<line num="240" count="0" type="stmt"/>
|
|
1777
|
-
<line num="241" count="0" type="stmt"/>
|
|
1778
|
-
<line num="242" count="1" type="cond" truecount="0" falsecount="1"/>
|
|
1779
|
-
<line num="243" count="0" type="stmt"/>
|
|
2498
|
+
<line num="75" count="143" type="cond" truecount="1" falsecount="0"/>
|
|
2499
|
+
<line num="76" count="2" type="stmt"/>
|
|
2500
|
+
<line num="77" count="2" type="stmt"/>
|
|
2501
|
+
<line num="79" count="143" type="cond" truecount="1" falsecount="0"/>
|
|
2502
|
+
<line num="80" count="14" type="stmt"/>
|
|
2503
|
+
<line num="81" count="14" type="stmt"/>
|
|
2504
|
+
<line num="83" count="143" type="cond" truecount="1" falsecount="0"/>
|
|
2505
|
+
<line num="84" count="182" type="stmt"/>
|
|
2506
|
+
<line num="85" count="182" type="stmt"/>
|
|
2507
|
+
<line num="86" count="182" type="cond" truecount="0" falsecount="1"/>
|
|
2508
|
+
<line num="87" count="0" type="stmt"/>
|
|
2509
|
+
<line num="88" count="0" type="stmt"/>
|
|
2510
|
+
<line num="89" count="182" type="stmt"/>
|
|
2511
|
+
<line num="90" count="182" type="stmt"/>
|
|
2512
|
+
<line num="92" count="143" type="cond" truecount="1" falsecount="0"/>
|
|
2513
|
+
<line num="93" count="337" type="stmt"/>
|
|
2514
|
+
<line num="94" count="337" type="stmt"/>
|
|
2515
|
+
<line num="95" count="337" type="stmt"/>
|
|
2516
|
+
<line num="100" count="337" type="stmt"/>
|
|
2517
|
+
<line num="101" count="337" type="stmt"/>
|
|
2518
|
+
<line num="102" count="337" type="stmt"/>
|
|
2519
|
+
<line num="103" count="337" type="stmt"/>
|
|
2520
|
+
<line num="104" count="337" type="cond" truecount="1" falsecount="0"/>
|
|
2521
|
+
<line num="105" count="337" type="cond" truecount="1" falsecount="0"/>
|
|
2522
|
+
<line num="106" count="337" type="cond" truecount="1" falsecount="0"/>
|
|
2523
|
+
<line num="107" count="5" type="stmt"/>
|
|
2524
|
+
<line num="108" count="5" type="cond" truecount="1" falsecount="0"/>
|
|
2525
|
+
<line num="111" count="337" type="cond" truecount="1" falsecount="0"/>
|
|
2526
|
+
<line num="112" count="55" type="stmt"/>
|
|
2527
|
+
<line num="113" count="55" type="stmt"/>
|
|
2528
|
+
<line num="114" count="55" type="stmt"/>
|
|
2529
|
+
<line num="115" count="55" type="stmt"/>
|
|
2530
|
+
<line num="116" count="55" type="stmt"/>
|
|
2531
|
+
<line num="117" count="55" type="stmt"/>
|
|
2532
|
+
<line num="118" count="55" type="cond" truecount="1" falsecount="0"/>
|
|
2533
|
+
<line num="120" count="326" type="stmt"/>
|
|
2534
|
+
<line num="121" count="337" type="stmt"/>
|
|
2535
|
+
<line num="123" count="143" type="cond" truecount="1" falsecount="0"/>
|
|
2536
|
+
<line num="124" count="235" type="stmt"/>
|
|
2537
|
+
<line num="125" count="235" type="stmt"/>
|
|
2538
|
+
<line num="126" count="235" type="stmt"/>
|
|
2539
|
+
<line num="127" count="235" type="cond" truecount="1" falsecount="0"/>
|
|
2540
|
+
<line num="128" count="235" type="cond" truecount="1" falsecount="0"/>
|
|
2541
|
+
<line num="129" count="3" type="stmt"/>
|
|
2542
|
+
<line num="130" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
2543
|
+
<line num="131" count="228" type="stmt"/>
|
|
2544
|
+
<line num="132" count="235" type="stmt"/>
|
|
2545
|
+
<line num="134" count="143" type="cond" truecount="1" falsecount="0"/>
|
|
2546
|
+
<line num="138" count="99" type="stmt"/>
|
|
2547
|
+
<line num="139" count="99" type="stmt"/>
|
|
2548
|
+
<line num="144" count="99" type="stmt"/>
|
|
2549
|
+
<line num="145" count="99" type="stmt"/>
|
|
2550
|
+
<line num="146" count="99" type="stmt"/>
|
|
2551
|
+
<line num="147" count="99" type="stmt"/>
|
|
2552
|
+
<line num="148" count="99" type="stmt"/>
|
|
2553
|
+
<line num="149" count="99" type="stmt"/>
|
|
2554
|
+
<line num="150" count="99" type="stmt"/>
|
|
2555
|
+
<line num="152" count="143" type="cond" truecount="1" falsecount="0"/>
|
|
2556
|
+
<line num="153" count="12" type="stmt"/>
|
|
2557
|
+
<line num="154" count="12" type="stmt"/>
|
|
2558
|
+
<line num="164" count="143" type="cond" truecount="1" falsecount="0"/>
|
|
2559
|
+
<line num="165" count="10" type="stmt"/>
|
|
2560
|
+
<line num="166" count="10" type="stmt"/>
|
|
2561
|
+
<line num="179" count="143" type="cond" truecount="1" falsecount="0"/>
|
|
2562
|
+
<line num="180" count="32" type="stmt"/>
|
|
2563
|
+
<line num="181" count="32" type="stmt"/>
|
|
2564
|
+
<line num="182" count="32" type="stmt"/>
|
|
2565
|
+
<line num="183" count="32" type="stmt"/>
|
|
2566
|
+
<line num="184" count="32" type="stmt"/>
|
|
2567
|
+
<line num="185" count="32" type="stmt"/>
|
|
2568
|
+
<line num="186" count="32" type="stmt"/>
|
|
2569
|
+
<line num="187" count="32" type="stmt"/>
|
|
2570
|
+
<line num="188" count="32" type="stmt"/>
|
|
2571
|
+
<line num="189" count="32" type="stmt"/>
|
|
2572
|
+
<line num="195" count="143" type="cond" truecount="1" falsecount="0"/>
|
|
2573
|
+
<line num="196" count="24" type="stmt"/>
|
|
2574
|
+
<line num="197" count="24" type="stmt"/>
|
|
2575
|
+
<line num="203" count="143" type="cond" truecount="1" falsecount="0"/>
|
|
2576
|
+
<line num="204" count="9" type="stmt"/>
|
|
2577
|
+
<line num="205" count="9" type="stmt"/>
|
|
2578
|
+
<line num="211" count="143" type="cond" truecount="1" falsecount="0"/>
|
|
2579
|
+
<line num="212" count="3" type="stmt"/>
|
|
2580
|
+
<line num="213" count="3" type="stmt"/>
|
|
2581
|
+
<line num="218" count="143" type="cond" truecount="1" falsecount="0"/>
|
|
2582
|
+
<line num="219" count="1" type="stmt"/>
|
|
2583
|
+
<line num="220" count="1" type="stmt"/>
|
|
2584
|
+
<line num="226" count="143" type="stmt"/>
|
|
2585
|
+
<line num="227" count="0" type="stmt"/>
|
|
2586
|
+
<line num="228" count="0" type="stmt"/>
|
|
2587
|
+
<line num="229" count="0" type="stmt"/>
|
|
2588
|
+
<line num="230" count="0" type="stmt"/>
|
|
2589
|
+
<line num="231" count="0" type="stmt"/>
|
|
2590
|
+
<line num="232" count="0" type="stmt"/>
|
|
2591
|
+
<line num="233" count="0" type="stmt"/>
|
|
2592
|
+
<line num="234" count="0" type="stmt"/>
|
|
2593
|
+
<line num="235" count="0" type="stmt"/>
|
|
2594
|
+
<line num="236" count="0" type="stmt"/>
|
|
2595
|
+
<line num="237" count="0" type="stmt"/>
|
|
2596
|
+
<line num="243" count="143" type="stmt"/>
|
|
1780
2597
|
<line num="244" count="0" type="stmt"/>
|
|
1781
|
-
<line num="
|
|
1782
|
-
<line num="
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
<
|
|
1786
|
-
<line num="
|
|
1787
|
-
<line num="
|
|
1788
|
-
<line num="
|
|
1789
|
-
<line num="
|
|
1790
|
-
<line num="
|
|
1791
|
-
<line num="
|
|
1792
|
-
<line num="
|
|
1793
|
-
<line num="
|
|
1794
|
-
<line num="
|
|
1795
|
-
<line num="
|
|
1796
|
-
<line num="
|
|
1797
|
-
<line num="
|
|
1798
|
-
<line num="
|
|
1799
|
-
<line num="
|
|
1800
|
-
<line num="
|
|
1801
|
-
<line num="
|
|
1802
|
-
<line num="
|
|
1803
|
-
<line num="
|
|
1804
|
-
<line num="
|
|
1805
|
-
<line num="
|
|
1806
|
-
<line num="
|
|
1807
|
-
<line num="
|
|
1808
|
-
<line num="
|
|
1809
|
-
<line num="
|
|
1810
|
-
<line num="
|
|
1811
|
-
<line num="
|
|
1812
|
-
<line num="
|
|
1813
|
-
<line num="
|
|
1814
|
-
<line num="
|
|
1815
|
-
<line num="
|
|
1816
|
-
<line num="
|
|
1817
|
-
<line num="
|
|
1818
|
-
<line num="
|
|
1819
|
-
<line num="
|
|
1820
|
-
<line num="
|
|
1821
|
-
<line num="
|
|
1822
|
-
<line num="
|
|
1823
|
-
<line num="
|
|
1824
|
-
<line num="
|
|
1825
|
-
<line num="
|
|
1826
|
-
<line num="
|
|
1827
|
-
<line num="
|
|
1828
|
-
<line num="
|
|
1829
|
-
<line num="
|
|
1830
|
-
<line num="
|
|
1831
|
-
<line num="
|
|
1832
|
-
<line num="
|
|
1833
|
-
<line num="
|
|
1834
|
-
<line num="
|
|
1835
|
-
<line num="
|
|
1836
|
-
<line num="
|
|
1837
|
-
<line num="
|
|
1838
|
-
<line num="
|
|
1839
|
-
<line num="
|
|
1840
|
-
<line num="
|
|
1841
|
-
<line num="
|
|
1842
|
-
<line num="
|
|
1843
|
-
<line num="
|
|
1844
|
-
<line num="
|
|
1845
|
-
<line num="
|
|
1846
|
-
<line num="
|
|
1847
|
-
<line num="
|
|
1848
|
-
<line num="
|
|
1849
|
-
<line num="
|
|
1850
|
-
<line num="
|
|
1851
|
-
<line num="
|
|
1852
|
-
<line num="
|
|
1853
|
-
<line num="
|
|
1854
|
-
<line num="
|
|
1855
|
-
<line num="
|
|
1856
|
-
<line num="
|
|
1857
|
-
<line num="
|
|
1858
|
-
<line num="
|
|
1859
|
-
<line num="
|
|
1860
|
-
<line num="
|
|
1861
|
-
<line num="
|
|
1862
|
-
<line num="
|
|
1863
|
-
<line num="
|
|
1864
|
-
<line num="
|
|
1865
|
-
<line num="
|
|
1866
|
-
<line num="
|
|
1867
|
-
<line num="
|
|
1868
|
-
<line num="
|
|
1869
|
-
<line num="
|
|
1870
|
-
<line num="
|
|
1871
|
-
<line num="
|
|
1872
|
-
<line num="
|
|
1873
|
-
<line num="
|
|
1874
|
-
<line num="
|
|
1875
|
-
<line num="
|
|
1876
|
-
<line num="
|
|
1877
|
-
<line num="
|
|
1878
|
-
<line num="
|
|
1879
|
-
<line num="
|
|
1880
|
-
<line num="
|
|
1881
|
-
<line num="
|
|
1882
|
-
<line num="
|
|
1883
|
-
<line num="
|
|
1884
|
-
<line num="
|
|
1885
|
-
<line num="
|
|
1886
|
-
<line num="
|
|
1887
|
-
<line num="
|
|
1888
|
-
<line num="
|
|
1889
|
-
<line num="
|
|
1890
|
-
<line num="
|
|
1891
|
-
<line num="
|
|
1892
|
-
<line num="
|
|
1893
|
-
<line num="
|
|
1894
|
-
<line num="
|
|
1895
|
-
<line num="
|
|
1896
|
-
<line num="
|
|
1897
|
-
<line num="
|
|
1898
|
-
<line num="
|
|
1899
|
-
<line num="
|
|
1900
|
-
<line num="
|
|
1901
|
-
<line num="
|
|
1902
|
-
<line num="437" count="260" type="stmt"/>
|
|
1903
|
-
<line num="441" count="260" type="stmt"/>
|
|
1904
|
-
<line num="443" count="260" type="stmt"/>
|
|
1905
|
-
<line num="444" count="260" type="stmt"/>
|
|
1906
|
-
<line num="445" count="260" type="stmt"/>
|
|
1907
|
-
<line num="446" count="260" type="stmt"/>
|
|
1908
|
-
<line num="447" count="260" type="cond" truecount="1" falsecount="0"/>
|
|
1909
|
-
<line num="448" count="22" type="stmt"/>
|
|
1910
|
-
<line num="449" count="22" type="cond" truecount="1" falsecount="0"/>
|
|
1911
|
-
<line num="452" count="238" type="stmt"/>
|
|
1912
|
-
<line num="453" count="238" type="stmt"/>
|
|
1913
|
-
<line num="454" count="238" type="stmt"/>
|
|
1914
|
-
<line num="455" count="238" type="stmt"/>
|
|
1915
|
-
<line num="456" count="238" type="stmt"/>
|
|
1916
|
-
<line num="457" count="260" type="cond" truecount="0" falsecount="1"/>
|
|
1917
|
-
<line num="458" count="0" type="stmt"/>
|
|
1918
|
-
<line num="459" count="0" type="cond" truecount="1" falsecount="0"/>
|
|
1919
|
-
<line num="461" count="238" type="stmt"/>
|
|
1920
|
-
<line num="462" count="238" type="stmt"/>
|
|
1921
|
-
<line num="463" count="260" type="stmt"/>
|
|
1922
|
-
<line num="469" count="108" type="cond" truecount="1" falsecount="0"/>
|
|
1923
|
-
<line num="470" count="260" type="stmt"/>
|
|
1924
|
-
<line num="471" count="260" type="stmt"/>
|
|
1925
|
-
<line num="474" count="260" type="stmt"/>
|
|
1926
|
-
<line num="476" count="260" type="stmt"/>
|
|
1927
|
-
<line num="477" count="260" type="stmt"/>
|
|
1928
|
-
<line num="478" count="260" type="stmt"/>
|
|
1929
|
-
<line num="479" count="260" type="stmt"/>
|
|
1930
|
-
<line num="480" count="260" type="cond" truecount="1" falsecount="0"/>
|
|
1931
|
-
<line num="481" count="5" type="stmt"/>
|
|
1932
|
-
<line num="482" count="5" type="cond" truecount="1" falsecount="0"/>
|
|
1933
|
-
<line num="485" count="255" type="stmt"/>
|
|
1934
|
-
<line num="486" count="260" type="stmt"/>
|
|
1935
|
-
<line num="491" count="108" type="cond" truecount="1" falsecount="0"/>
|
|
1936
|
-
<line num="492" count="260" type="stmt"/>
|
|
1937
|
-
<line num="493" count="260" type="stmt"/>
|
|
1938
|
-
<line num="496" count="260" type="stmt"/>
|
|
1939
|
-
<line num="497" count="260" type="cond" truecount="1" falsecount="0"/>
|
|
1940
|
-
<line num="498" count="2" type="stmt"/>
|
|
1941
|
-
<line num="499" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
1942
|
-
<line num="501" count="258" type="stmt"/>
|
|
1943
|
-
<line num="502" count="258" type="cond" truecount="1" falsecount="0"/>
|
|
1944
|
-
<line num="503" count="244" type="stmt"/>
|
|
1945
|
-
<line num="504" count="244" type="cond" truecount="2" falsecount="0"/>
|
|
1946
|
-
<line num="506" count="19" type="cond" truecount="0" falsecount="1"/>
|
|
1947
|
-
<line num="507" count="0" type="stmt"/>
|
|
1948
|
-
<line num="508" count="0" type="stmt"/>
|
|
1949
|
-
<line num="509" count="0" type="stmt"/>
|
|
1950
|
-
<line num="510" count="0" type="stmt"/>
|
|
1951
|
-
<line num="511" count="0" type="cond" truecount="1" falsecount="0"/>
|
|
1952
|
-
<line num="513" count="14" type="stmt"/>
|
|
1953
|
-
<line num="514" count="19" type="cond" truecount="1" falsecount="0"/>
|
|
1954
|
-
<line num="515" count="9" type="stmt"/>
|
|
1955
|
-
<line num="516" count="9" type="cond" truecount="1" falsecount="0"/>
|
|
1956
|
-
<line num="518" count="5" type="stmt"/>
|
|
1957
|
-
<line num="519" count="260" type="stmt"/>
|
|
1958
|
-
<line num="524" count="108" type="cond" truecount="1" falsecount="0"/>
|
|
1959
|
-
<line num="525" count="255" type="stmt"/>
|
|
1960
|
-
<line num="528" count="255" type="stmt"/>
|
|
1961
|
-
<line num="529" count="255" type="stmt"/>
|
|
1962
|
-
<line num="531" count="255" type="cond" truecount="1" falsecount="0"/>
|
|
1963
|
-
<line num="532" count="17" type="stmt"/>
|
|
1964
|
-
<line num="533" count="17" type="cond" truecount="1" falsecount="0"/>
|
|
1965
|
-
<line num="536" count="238" type="stmt"/>
|
|
1966
|
-
<line num="537" count="255" type="cond" truecount="0" falsecount="1"/>
|
|
1967
|
-
<line num="538" count="0" type="stmt"/>
|
|
1968
|
-
<line num="539" count="0" type="stmt"/>
|
|
1969
|
-
<line num="540" count="0" type="stmt"/>
|
|
1970
|
-
<line num="541" count="0" type="stmt"/>
|
|
1971
|
-
<line num="543" count="0" type="stmt"/>
|
|
1972
|
-
<line num="545" count="255" type="cond" truecount="0" falsecount="1"/>
|
|
1973
|
-
<line num="546" count="0" type="stmt"/>
|
|
1974
|
-
<line num="547" count="0" type="stmt"/>
|
|
1975
|
-
<line num="548" count="0" type="stmt"/>
|
|
1976
|
-
<line num="549" count="0" type="stmt"/>
|
|
1977
|
-
<line num="551" count="0" type="stmt"/>
|
|
1978
|
-
<line num="553" count="255" type="cond" truecount="1" falsecount="0"/>
|
|
1979
|
-
<line num="554" count="238" type="stmt"/>
|
|
1980
|
-
<line num="556" count="255" type="cond" truecount="0" falsecount="1"/>
|
|
1981
|
-
<line num="557" count="0" type="stmt"/>
|
|
1982
|
-
<line num="558" count="255" type="stmt"/>
|
|
1983
|
-
<line num="559" count="255" type="stmt"/>
|
|
1984
|
-
<line num="564" count="108" type="cond" truecount="1" falsecount="0"/>
|
|
1985
|
-
<line num="565" count="497" type="stmt"/>
|
|
1986
|
-
<line num="566" count="497" type="stmt"/>
|
|
1987
|
-
<line num="567" count="497" type="stmt"/>
|
|
1988
|
-
<line num="568" count="497" type="cond" truecount="1" falsecount="0"/>
|
|
1989
|
-
<line num="569" count="238" type="cond" truecount="1" falsecount="0"/>
|
|
1990
|
-
<line num="570" count="237" type="stmt"/>
|
|
1991
|
-
<line num="572" count="497" type="cond" truecount="0" falsecount="1"/>
|
|
1992
|
-
<line num="573" count="0" type="stmt"/>
|
|
1993
|
-
<line num="575" count="497" type="cond" truecount="0" falsecount="1"/>
|
|
1994
|
-
<line num="576" count="0" type="stmt"/>
|
|
1995
|
-
<line num="578" count="497" type="cond" truecount="1" falsecount="0"/>
|
|
1996
|
-
<line num="579" count="259" type="stmt"/>
|
|
1997
|
-
<line num="581" count="497" type="cond" truecount="0" falsecount="1"/>
|
|
1998
|
-
<line num="582" count="0" type="stmt"/>
|
|
1999
|
-
<line num="583" count="497" type="stmt"/>
|
|
2000
|
-
<line num="584" count="497" type="stmt"/>
|
|
2001
|
-
<line num="589" count="108" type="cond" truecount="1" falsecount="0"/>
|
|
2002
|
-
<line num="590" count="253" type="stmt"/>
|
|
2003
|
-
<line num="591" count="253" type="stmt"/>
|
|
2004
|
-
<line num="592" count="253" type="stmt"/>
|
|
2005
|
-
<line num="593" count="253" type="cond" truecount="1" falsecount="0"/>
|
|
2006
|
-
<line num="594" count="253" type="stmt"/>
|
|
2007
|
-
<line num="595" count="253" type="stmt"/>
|
|
2008
|
-
<line num="596" count="253" type="stmt"/>
|
|
2009
|
-
<line num="597" count="253" type="stmt"/>
|
|
2010
|
-
<line num="602" count="108" type="cond" truecount="1" falsecount="0"/>
|
|
2011
|
-
<line num="606" count="238" type="stmt"/>
|
|
2012
|
-
<line num="607" count="238" type="stmt"/>
|
|
2013
|
-
<line num="608" count="238" type="stmt"/>
|
|
2014
|
-
<line num="616" count="238" type="stmt"/>
|
|
2015
|
-
<line num="617" count="238" type="cond" truecount="1" falsecount="0"/>
|
|
2016
|
-
<line num="618" count="238" type="stmt"/>
|
|
2017
|
-
<line num="619" count="238" type="stmt"/>
|
|
2018
|
-
<line num="620" count="238" type="stmt"/>
|
|
2019
|
-
<line num="621" count="238" type="stmt"/>
|
|
2020
|
-
<line num="622" count="238" type="stmt"/>
|
|
2021
|
-
<line num="623" count="238" type="stmt"/>
|
|
2022
|
-
<line num="624" count="238" type="stmt"/>
|
|
2023
|
-
<line num="625" count="238" type="stmt"/>
|
|
2024
|
-
<line num="626" count="238" type="cond" truecount="0" falsecount="1"/>
|
|
2025
|
-
<line num="627" count="0" type="stmt"/>
|
|
2026
|
-
<line num="628" count="0" type="stmt"/>
|
|
2027
|
-
<line num="629" count="238" type="stmt"/>
|
|
2028
|
-
<line num="634" count="108" type="cond" truecount="1" falsecount="0"/>
|
|
2029
|
-
<line num="643" count="238" type="stmt"/>
|
|
2030
|
-
<line num="644" count="238" type="stmt"/>
|
|
2031
|
-
<line num="645" count="238" type="stmt"/>
|
|
2032
|
-
<line num="646" count="238" type="stmt"/>
|
|
2033
|
-
<line num="647" count="238" type="cond" truecount="1" falsecount="0"/>
|
|
2034
|
-
<line num="648" count="238" type="stmt"/>
|
|
2035
|
-
<line num="649" count="238" type="stmt"/>
|
|
2036
|
-
<line num="650" count="238" type="stmt"/>
|
|
2037
|
-
<line num="651" count="238" type="cond" truecount="1" falsecount="0"/>
|
|
2038
|
-
<line num="652" count="238" type="stmt"/>
|
|
2039
|
-
<line num="653" count="238" type="stmt"/>
|
|
2040
|
-
<line num="654" count="238" type="stmt"/>
|
|
2041
|
-
<line num="657" count="238" type="stmt"/>
|
|
2042
|
-
<line num="658" count="238" type="stmt"/>
|
|
2043
|
-
<line num="659" count="238" type="stmt"/>
|
|
2044
|
-
<line num="660" count="238" type="stmt"/>
|
|
2045
|
-
<line num="661" count="238" type="stmt"/>
|
|
2046
|
-
<line num="662" count="238" type="stmt"/>
|
|
2047
|
-
<line num="663" count="238" type="stmt"/>
|
|
2048
|
-
<line num="666" count="238" type="stmt"/>
|
|
2049
|
-
<line num="667" count="238" type="stmt"/>
|
|
2050
|
-
<line num="668" count="238" type="cond" truecount="1" falsecount="0"/>
|
|
2051
|
-
<line num="669" count="238" type="stmt"/>
|
|
2052
|
-
<line num="670" count="238" type="stmt"/>
|
|
2053
|
-
<line num="671" count="238" type="stmt"/>
|
|
2054
|
-
<line num="672" count="238" type="stmt"/>
|
|
2055
|
-
<line num="673" count="238" type="stmt"/>
|
|
2056
|
-
<line num="674" count="238" type="stmt"/>
|
|
2057
|
-
<line num="675" count="238" type="stmt"/>
|
|
2058
|
-
<line num="676" count="238" type="stmt"/>
|
|
2059
|
-
<line num="677" count="238" type="stmt"/>
|
|
2060
|
-
<line num="678" count="238" type="stmt"/>
|
|
2061
|
-
<line num="679" count="238" type="stmt"/>
|
|
2062
|
-
<line num="680" count="0" type="stmt"/>
|
|
2063
|
-
<line num="681" count="0" type="stmt"/>
|
|
2064
|
-
<line num="682" count="0" type="stmt"/>
|
|
2065
|
-
<line num="683" count="0" type="stmt"/>
|
|
2066
|
-
<line num="684" count="0" type="stmt"/>
|
|
2067
|
-
<line num="685" count="0" type="stmt"/>
|
|
2068
|
-
<line num="686" count="0" type="stmt"/>
|
|
2069
|
-
<line num="687" count="238" type="stmt"/>
|
|
2070
|
-
<line num="689" count="238" type="stmt"/>
|
|
2071
|
-
<line num="691" count="238" type="stmt"/>
|
|
2072
|
-
<line num="692" count="238" type="stmt"/>
|
|
2073
|
-
<line num="697" count="108" type="cond" truecount="1" falsecount="0"/>
|
|
2074
|
-
<line num="698" count="238" type="stmt"/>
|
|
2075
|
-
<line num="699" count="238" type="stmt"/>
|
|
2076
|
-
<line num="700" count="238" type="stmt"/>
|
|
2077
|
-
<line num="701" count="238" type="stmt"/>
|
|
2078
|
-
<line num="702" count="238" type="stmt"/>
|
|
2079
|
-
<line num="703" count="238" type="stmt"/>
|
|
2080
|
-
<line num="704" count="238" type="stmt"/>
|
|
2081
|
-
<line num="705" count="238" type="stmt"/>
|
|
2082
|
-
<line num="706" count="238" type="stmt"/>
|
|
2083
|
-
<line num="707" count="238" type="stmt"/>
|
|
2084
|
-
<line num="709" count="238" type="cond" truecount="1" falsecount="0"/>
|
|
2085
|
-
<line num="710" count="1" type="stmt"/>
|
|
2086
|
-
<line num="711" count="1" type="stmt"/>
|
|
2087
|
-
<line num="712" count="1" type="stmt"/>
|
|
2088
|
-
<line num="713" count="1" type="stmt"/>
|
|
2089
|
-
<line num="714" count="1" type="stmt"/>
|
|
2090
|
-
<line num="715" count="1" type="stmt"/>
|
|
2091
|
-
<line num="716" count="1" type="stmt"/>
|
|
2092
|
-
<line num="717" count="238" type="cond" truecount="1" falsecount="0"/>
|
|
2093
|
-
<line num="718" count="237" type="stmt"/>
|
|
2094
|
-
<line num="719" count="237" type="stmt"/>
|
|
2095
|
-
<line num="720" count="237" type="stmt"/>
|
|
2096
|
-
<line num="721" count="237" type="stmt"/>
|
|
2097
|
-
<line num="722" count="237" type="stmt"/>
|
|
2098
|
-
<line num="723" count="237" type="stmt"/>
|
|
2099
|
-
<line num="724" count="237" type="stmt"/>
|
|
2100
|
-
<line num="725" count="237" type="stmt"/>
|
|
2101
|
-
<line num="726" count="238" type="stmt"/>
|
|
2102
|
-
<line num="731" count="108" type="cond" truecount="1" falsecount="0"/>
|
|
2103
|
-
<line num="732" count="237" type="stmt"/>
|
|
2104
|
-
<line num="733" count="237" type="stmt"/>
|
|
2105
|
-
<line num="734" count="237" type="stmt"/>
|
|
2106
|
-
<line num="735" count="237" type="stmt"/>
|
|
2107
|
-
<line num="736" count="237" type="stmt"/>
|
|
2108
|
-
<line num="737" count="237" type="stmt"/>
|
|
2109
|
-
<line num="738" count="237" type="stmt"/>
|
|
2110
|
-
<line num="739" count="237" type="stmt"/>
|
|
2111
|
-
<line num="742" count="237" type="cond" truecount="1" falsecount="0"/>
|
|
2112
|
-
<line num="743" count="36" type="cond" truecount="1" falsecount="0"/>
|
|
2113
|
-
<line num="744" count="38" type="stmt"/>
|
|
2114
|
-
<line num="745" count="38" type="cond" truecount="1" falsecount="0"/>
|
|
2115
|
-
<line num="746" count="2" type="stmt"/>
|
|
2116
|
-
<line num="747" count="38" type="stmt"/>
|
|
2117
|
-
<line num="748" count="38" type="stmt"/>
|
|
2118
|
-
<line num="749" count="36" type="stmt"/>
|
|
2119
|
-
<line num="750" count="36" type="stmt"/>
|
|
2120
|
-
<line num="752" count="237" type="stmt"/>
|
|
2121
|
-
<line num="753" count="237" type="stmt"/>
|
|
2122
|
-
<line num="754" count="237" type="stmt"/>
|
|
2123
|
-
<line num="759" count="108" type="cond" truecount="1" falsecount="0"/>
|
|
2124
|
-
<line num="760" count="1" type="stmt"/>
|
|
2125
|
-
<line num="761" count="1" type="stmt"/>
|
|
2126
|
-
<line num="762" count="1" type="stmt"/>
|
|
2127
|
-
<line num="763" count="1" type="stmt"/>
|
|
2128
|
-
<line num="764" count="1" type="stmt"/>
|
|
2129
|
-
<line num="765" count="1" type="stmt"/>
|
|
2130
|
-
<line num="766" count="1" type="stmt"/>
|
|
2131
|
-
<line num="767" count="1" type="stmt"/>
|
|
2132
|
-
<line num="768" count="1" type="stmt"/>
|
|
2133
|
-
<line num="769" count="1" type="stmt"/>
|
|
2134
|
-
<line num="771" count="1" type="stmt"/>
|
|
2135
|
-
<line num="772" count="1" type="stmt"/>
|
|
2136
|
-
<line num="773" count="1" type="stmt"/>
|
|
2137
|
-
<line num="775" count="1" type="stmt"/>
|
|
2138
|
-
<line num="776" count="1" type="stmt"/>
|
|
2139
|
-
<line num="777" count="1" type="stmt"/>
|
|
2140
|
-
<line num="779" count="1" type="stmt"/>
|
|
2141
|
-
<line num="780" count="1" type="stmt"/>
|
|
2142
|
-
<line num="785" count="108" type="cond" truecount="1" falsecount="0"/>
|
|
2143
|
-
<line num="786" count="238" type="stmt"/>
|
|
2144
|
-
<line num="787" count="238" type="stmt"/>
|
|
2145
|
-
<line num="788" count="238" type="stmt"/>
|
|
2146
|
-
<line num="789" count="238" type="stmt"/>
|
|
2147
|
-
<line num="790" count="238" type="stmt"/>
|
|
2148
|
-
<line num="791" count="238" type="cond" truecount="1" falsecount="0"/>
|
|
2149
|
-
<line num="792" count="217" type="cond" truecount="1" falsecount="0"/>
|
|
2150
|
-
<line num="793" count="217" type="stmt"/>
|
|
2151
|
-
<line num="794" count="217" type="stmt"/>
|
|
2152
|
-
<line num="795" count="217" type="stmt"/>
|
|
2153
|
-
<line num="796" count="217" type="stmt"/>
|
|
2154
|
-
<line num="798" count="238" type="cond" truecount="1" falsecount="0"/>
|
|
2155
|
-
<line num="799" count="9" type="stmt"/>
|
|
2156
|
-
<line num="800" count="9" type="cond" truecount="0" falsecount="1"/>
|
|
2157
|
-
<line num="801" count="9" type="stmt"/>
|
|
2158
|
-
<line num="802" count="9" type="stmt"/>
|
|
2159
|
-
<line num="803" count="9" type="stmt"/>
|
|
2160
|
-
<line num="804" count="9" type="stmt"/>
|
|
2161
|
-
<line num="805" count="9" type="stmt"/>
|
|
2162
|
-
<line num="806" count="9" type="stmt"/>
|
|
2163
|
-
<line num="807" count="9" type="stmt"/>
|
|
2164
|
-
<line num="808" count="9" type="stmt"/>
|
|
2165
|
-
<line num="809" count="9" type="stmt"/>
|
|
2166
|
-
<line num="811" count="238" type="cond" truecount="1" falsecount="0"/>
|
|
2167
|
-
<line num="813" count="12" type="stmt"/>
|
|
2168
|
-
<line num="814" count="238" type="stmt"/>
|
|
2169
|
-
<line num="815" count="238" type="stmt"/>
|
|
2170
|
-
<line num="820" count="108" type="cond" truecount="1" falsecount="0"/>
|
|
2171
|
-
<line num="821" count="39" type="stmt"/>
|
|
2172
|
-
<line num="822" count="39" type="stmt"/>
|
|
2173
|
-
<line num="823" count="39" type="stmt"/>
|
|
2174
|
-
<line num="824" count="39" type="stmt"/>
|
|
2175
|
-
<line num="826" count="39" type="cond" truecount="2" falsecount="0"/>
|
|
2176
|
-
<line num="827" count="1" type="stmt"/>
|
|
2177
|
-
<line num="828" count="1" type="cond" truecount="0" falsecount="1"/>
|
|
2178
|
-
<line num="829" count="0" type="stmt"/>
|
|
2179
|
-
<line num="830" count="0" type="stmt"/>
|
|
2180
|
-
<line num="831" count="0" type="stmt"/>
|
|
2181
|
-
<line num="832" count="0" type="stmt"/>
|
|
2182
|
-
<line num="833" count="0" type="stmt"/>
|
|
2183
|
-
<line num="834" count="0" type="stmt"/>
|
|
2184
|
-
<line num="835" count="1" type="stmt"/>
|
|
2185
|
-
<line num="838" count="39" type="stmt"/>
|
|
2186
|
-
<line num="839" count="39" type="cond" truecount="1" falsecount="0"/>
|
|
2187
|
-
<line num="840" count="1" type="stmt"/>
|
|
2188
|
-
<line num="841" count="39" type="cond" truecount="0" falsecount="1"/>
|
|
2189
|
-
<line num="842" count="0" type="stmt"/>
|
|
2190
|
-
<line num="843" count="0" type="stmt"/>
|
|
2191
|
-
<line num="844" count="0" type="stmt"/>
|
|
2192
|
-
<line num="845" count="0" type="stmt"/>
|
|
2193
|
-
<line num="846" count="0" type="stmt"/>
|
|
2194
|
-
<line num="847" count="0" type="stmt"/>
|
|
2195
|
-
<line num="848" count="0" type="stmt"/>
|
|
2196
|
-
<line num="849" count="0" type="stmt"/>
|
|
2197
|
-
<line num="850" count="0" type="stmt"/>
|
|
2198
|
-
<line num="851" count="0" type="stmt"/>
|
|
2199
|
-
<line num="853" count="39" type="stmt"/>
|
|
2200
|
-
<line num="854" count="39" type="stmt"/>
|
|
2201
|
-
<line num="860" count="108" type="cond" truecount="1" falsecount="0"/>
|
|
2202
|
-
<line num="861" count="254" type="stmt"/>
|
|
2203
|
-
<line num="865" count="254" type="stmt"/>
|
|
2204
|
-
<line num="866" count="254" type="stmt"/>
|
|
2205
|
-
<line num="867" count="254" type="stmt"/>
|
|
2206
|
-
<line num="869" count="254" type="stmt"/>
|
|
2207
|
-
<line num="871" count="254" type="cond" truecount="1" falsecount="0"/>
|
|
2208
|
-
<line num="872" count="1" type="stmt"/>
|
|
2209
|
-
<line num="873" count="1" type="stmt"/>
|
|
2210
|
-
<line num="875" count="254" type="cond" truecount="1" falsecount="0"/>
|
|
2211
|
-
<line num="876" count="238" type="stmt"/>
|
|
2212
|
-
<line num="877" count="238" type="stmt"/>
|
|
2213
|
-
<line num="879" count="254" type="stmt"/>
|
|
2214
|
-
<line num="881" count="254" type="cond" truecount="1" falsecount="0"/>
|
|
2215
|
-
<line num="882" count="39" type="stmt"/>
|
|
2216
|
-
<line num="885" count="39" type="stmt"/>
|
|
2217
|
-
<line num="886" count="39" type="stmt"/>
|
|
2218
|
-
<line num="887" count="39" type="stmt"/>
|
|
2219
|
-
<line num="888" count="39" type="stmt"/>
|
|
2220
|
-
<line num="889" count="39" type="stmt"/>
|
|
2221
|
-
<line num="890" count="39" type="cond" truecount="0" falsecount="1"/>
|
|
2222
|
-
<line num="891" count="0" type="stmt"/>
|
|
2223
|
-
<line num="892" count="0" type="stmt"/>
|
|
2224
|
-
<line num="895" count="39" type="stmt"/>
|
|
2225
|
-
<line num="896" count="39" type="stmt"/>
|
|
2226
|
-
<line num="897" count="39" type="stmt"/>
|
|
2227
|
-
<line num="898" count="39" type="cond" truecount="1" falsecount="0"/>
|
|
2228
|
-
<line num="899" count="39" type="stmt"/>
|
|
2229
|
-
<line num="900" count="39" type="stmt"/>
|
|
2230
|
-
<line num="901" count="39" type="stmt"/>
|
|
2231
|
-
<line num="902" count="39" type="cond" truecount="0" falsecount="1"/>
|
|
2232
|
-
<line num="903" count="0" type="stmt"/>
|
|
2233
|
-
<line num="904" count="0" type="stmt"/>
|
|
2234
|
-
<line num="905" count="39" type="stmt"/>
|
|
2235
|
-
<line num="906" count="39" type="stmt"/>
|
|
2236
|
-
<line num="907" count="254" type="stmt"/>
|
|
2237
|
-
<line num="908" count="254" type="stmt"/>
|
|
2238
|
-
<line num="909" count="254" type="stmt"/>
|
|
2239
|
-
<line num="910" count="254" type="stmt"/>
|
|
2240
|
-
<line num="911" count="254" type="stmt"/>
|
|
2241
|
-
<line num="912" count="254" type="stmt"/>
|
|
2242
|
-
<line num="917" count="108" type="cond" truecount="1" falsecount="0"/>
|
|
2243
|
-
<line num="918" count="466" type="cond" truecount="1" falsecount="0"/>
|
|
2244
|
-
<line num="919" count="429" type="stmt"/>
|
|
2245
|
-
<line num="920" count="429" type="cond" truecount="1" falsecount="0"/>
|
|
2246
|
-
<line num="922" count="37" type="stmt"/>
|
|
2247
|
-
<line num="923" count="37" type="cond" truecount="1" falsecount="0"/>
|
|
2248
|
-
<line num="924" count="37" type="cond" truecount="1" falsecount="0"/>
|
|
2249
|
-
<line num="925" count="37" type="stmt"/>
|
|
2250
|
-
<line num="927" count="37" type="stmt"/>
|
|
2251
|
-
<line num="928" count="466" type="stmt"/>
|
|
2252
|
-
<line num="933" count="108" type="cond" truecount="1" falsecount="0"/>
|
|
2253
|
-
<line num="934" count="44" type="cond" truecount="2" falsecount="0"/>
|
|
2254
|
-
<line num="935" count="1" type="stmt"/>
|
|
2255
|
-
<line num="936" count="1" type="stmt"/>
|
|
2256
|
-
<line num="937" count="44" type="cond" truecount="0" falsecount="1"/>
|
|
2257
|
-
<line num="938" count="0" type="stmt"/>
|
|
2258
|
-
<line num="939" count="0" type="cond" truecount="1" falsecount="0"/>
|
|
2259
|
-
<line num="940" count="43" type="stmt"/>
|
|
2260
|
-
<line num="941" count="44" type="stmt"/>
|
|
2261
|
-
<line num="942" count="108" type="stmt"/>
|
|
2598
|
+
<line num="245" count="0" type="stmt"/>
|
|
2599
|
+
<line num="246" count="143" type="stmt"/>
|
|
2600
|
+
</file>
|
|
2601
|
+
<file name="token-processor.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/src/token-processor.mts">
|
|
2602
|
+
<metrics statements="116" coveredstatements="84" conditionals="33" coveredconditionals="31" methods="9" coveredmethods="8"/>
|
|
2603
|
+
<line num="12" count="1" type="stmt"/>
|
|
2604
|
+
<line num="13" count="1" type="stmt"/>
|
|
2605
|
+
<line num="18" count="1" type="stmt"/>
|
|
2606
|
+
<line num="24" count="1" type="stmt"/>
|
|
2607
|
+
<line num="25" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
2608
|
+
<line num="30" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
2609
|
+
<line num="31" count="687" type="stmt"/>
|
|
2610
|
+
<line num="32" count="687" type="stmt"/>
|
|
2611
|
+
<line num="36" count="687" type="stmt"/>
|
|
2612
|
+
<line num="37" count="687" type="stmt"/>
|
|
2613
|
+
<line num="38" count="687" type="cond" truecount="1" falsecount="0"/>
|
|
2614
|
+
<line num="39" count="268" type="stmt"/>
|
|
2615
|
+
<line num="40" count="268" type="cond" truecount="1" falsecount="0"/>
|
|
2616
|
+
<line num="41" count="685" type="stmt"/>
|
|
2617
|
+
<line num="42" count="687" type="cond" truecount="1" falsecount="0"/>
|
|
2618
|
+
<line num="43" count="12" type="stmt"/>
|
|
2619
|
+
<line num="44" count="687" type="cond" truecount="2" falsecount="0"/>
|
|
2620
|
+
<line num="45" count="32" type="cond" truecount="1" falsecount="0"/>
|
|
2621
|
+
<line num="46" count="16" type="stmt"/>
|
|
2622
|
+
<line num="47" count="16" type="stmt"/>
|
|
2623
|
+
<line num="48" count="16" type="stmt"/>
|
|
2624
|
+
<line num="49" count="16" type="stmt"/>
|
|
2625
|
+
<line num="50" count="32" type="cond" truecount="1" falsecount="0"/>
|
|
2626
|
+
<line num="51" count="687" type="cond" truecount="1" falsecount="0"/>
|
|
2627
|
+
<line num="52" count="633" type="stmt"/>
|
|
2628
|
+
<line num="53" count="633" type="cond" truecount="1" falsecount="0"/>
|
|
2629
|
+
<line num="54" count="687" type="stmt"/>
|
|
2630
|
+
<line num="55" count="687" type="cond" truecount="3" falsecount="0"/>
|
|
2631
|
+
<line num="56" count="3" type="stmt"/>
|
|
2632
|
+
<line num="57" count="3" type="stmt"/>
|
|
2633
|
+
<line num="58" count="3" type="stmt"/>
|
|
2634
|
+
<line num="59" count="3" type="stmt"/>
|
|
2635
|
+
<line num="60" count="3" type="stmt"/>
|
|
2636
|
+
<line num="61" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
2637
|
+
<line num="62" count="687" type="stmt"/>
|
|
2638
|
+
<line num="63" count="687" type="stmt"/>
|
|
2639
|
+
<line num="68" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
2640
|
+
<line num="69" count="611" type="cond" truecount="1" falsecount="0"/>
|
|
2641
|
+
<line num="70" count="573" type="stmt"/>
|
|
2642
|
+
<line num="71" count="573" type="cond" truecount="1" falsecount="0"/>
|
|
2643
|
+
<line num="73" count="38" type="stmt"/>
|
|
2644
|
+
<line num="74" count="38" type="cond" truecount="1" falsecount="0"/>
|
|
2645
|
+
<line num="75" count="38" type="cond" truecount="1" falsecount="0"/>
|
|
2646
|
+
<line num="76" count="38" type="stmt"/>
|
|
2647
|
+
<line num="78" count="38" type="stmt"/>
|
|
2648
|
+
<line num="79" count="611" type="stmt"/>
|
|
2649
|
+
<line num="84" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
2650
|
+
<line num="85" count="45" type="cond" truecount="2" falsecount="0"/>
|
|
2651
|
+
<line num="86" count="1" type="stmt"/>
|
|
2652
|
+
<line num="87" count="1" type="stmt"/>
|
|
2653
|
+
<line num="88" count="45" type="cond" truecount="0" falsecount="1"/>
|
|
2654
|
+
<line num="89" count="0" type="stmt"/>
|
|
2655
|
+
<line num="90" count="0" type="cond" truecount="1" falsecount="0"/>
|
|
2656
|
+
<line num="91" count="44" type="stmt"/>
|
|
2657
|
+
<line num="92" count="45" type="stmt"/>
|
|
2658
|
+
<line num="98" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
2659
|
+
<line num="99" count="309" type="stmt"/>
|
|
2660
|
+
<line num="103" count="309" type="stmt"/>
|
|
2661
|
+
<line num="104" count="309" type="stmt"/>
|
|
2662
|
+
<line num="105" count="309" type="stmt"/>
|
|
2663
|
+
<line num="107" count="309" type="cond" truecount="1" falsecount="0"/>
|
|
2664
|
+
<line num="108" count="2" type="stmt"/>
|
|
2665
|
+
<line num="109" count="2" type="stmt"/>
|
|
2666
|
+
<line num="111" count="309" type="cond" truecount="1" falsecount="0"/>
|
|
2667
|
+
<line num="112" count="293" type="stmt"/>
|
|
2668
|
+
<line num="113" count="293" type="stmt"/>
|
|
2669
|
+
<line num="115" count="309" type="stmt"/>
|
|
2670
|
+
<line num="117" count="309" type="cond" truecount="1" falsecount="0"/>
|
|
2671
|
+
<line num="119" count="56" type="stmt"/>
|
|
2672
|
+
<line num="120" count="56" type="stmt"/>
|
|
2673
|
+
<line num="121" count="56" type="stmt"/>
|
|
2674
|
+
<line num="122" count="56" type="cond" truecount="1" falsecount="0"/>
|
|
2675
|
+
<line num="123" count="55" type="stmt"/>
|
|
2676
|
+
<line num="124" count="55" type="stmt"/>
|
|
2677
|
+
<line num="125" count="56" type="cond" truecount="1" falsecount="0"/>
|
|
2678
|
+
<line num="126" count="56" type="cond" truecount="0" falsecount="1"/>
|
|
2679
|
+
<line num="127" count="0" type="stmt"/>
|
|
2680
|
+
<line num="128" count="0" type="cond" truecount="1" falsecount="0"/>
|
|
2681
|
+
<line num="129" count="55" type="stmt"/>
|
|
2682
|
+
<line num="130" count="56" type="stmt"/>
|
|
2683
|
+
<line num="131" count="309" type="stmt"/>
|
|
2684
|
+
<line num="132" count="309" type="stmt"/>
|
|
2685
|
+
<line num="133" count="309" type="stmt"/>
|
|
2686
|
+
<line num="134" count="309" type="stmt"/>
|
|
2687
|
+
<line num="135" count="309" type="stmt"/>
|
|
2688
|
+
<line num="136" count="309" type="stmt"/>
|
|
2689
|
+
<line num="141" count="1" type="stmt"/>
|
|
2690
|
+
<line num="142" count="0" type="stmt"/>
|
|
2691
|
+
<line num="143" count="0" type="stmt"/>
|
|
2692
|
+
<line num="144" count="0" type="stmt"/>
|
|
2693
|
+
<line num="145" count="0" type="stmt"/>
|
|
2694
|
+
<line num="146" count="0" type="stmt"/>
|
|
2695
|
+
<line num="148" count="0" type="stmt"/>
|
|
2696
|
+
<line num="149" count="0" type="stmt"/>
|
|
2697
|
+
<line num="150" count="0" type="stmt"/>
|
|
2698
|
+
<line num="151" count="0" type="stmt"/>
|
|
2699
|
+
<line num="152" count="0" type="stmt"/>
|
|
2700
|
+
<line num="153" count="0" type="stmt"/>
|
|
2701
|
+
<line num="154" count="0" type="stmt"/>
|
|
2702
|
+
<line num="155" count="0" type="stmt"/>
|
|
2703
|
+
<line num="156" count="0" type="stmt"/>
|
|
2704
|
+
<line num="157" count="0" type="stmt"/>
|
|
2705
|
+
<line num="160" count="0" type="stmt"/>
|
|
2706
|
+
<line num="161" count="0" type="stmt"/>
|
|
2707
|
+
<line num="162" count="0" type="stmt"/>
|
|
2708
|
+
<line num="163" count="0" type="stmt"/>
|
|
2709
|
+
<line num="164" count="0" type="stmt"/>
|
|
2710
|
+
<line num="165" count="0" type="stmt"/>
|
|
2711
|
+
<line num="166" count="0" type="stmt"/>
|
|
2712
|
+
<line num="167" count="0" type="stmt"/>
|
|
2713
|
+
<line num="168" count="0" type="stmt"/>
|
|
2714
|
+
<line num="169" count="0" type="stmt"/>
|
|
2715
|
+
<line num="170" count="0" type="stmt"/>
|
|
2716
|
+
<line num="172" count="0" type="stmt"/>
|
|
2717
|
+
<line num="173" count="0" type="stmt"/>
|
|
2718
|
+
<line num="174" count="1" type="stmt"/>
|
|
2262
2719
|
</file>
|
|
2263
2720
|
</package>
|
|
2264
2721
|
<package name="src.decorators">
|
|
@@ -2307,29 +2764,29 @@
|
|
|
2307
2764
|
<line num="17" count="1" type="stmt"/>
|
|
2308
2765
|
<line num="18" count="1" type="stmt"/>
|
|
2309
2766
|
<line num="76" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
2310
|
-
<line num="77" count="
|
|
2311
|
-
<line num="78" count="
|
|
2312
|
-
<line num="79" count="
|
|
2313
|
-
<line num="80" count="
|
|
2314
|
-
<line num="81" count="
|
|
2315
|
-
<line num="82" count="
|
|
2316
|
-
<line num="83" count="
|
|
2317
|
-
<line num="84" count="
|
|
2318
|
-
<line num="85" count="
|
|
2319
|
-
<line num="86" count="
|
|
2320
|
-
<line num="87" count="
|
|
2321
|
-
<line num="88" count="
|
|
2767
|
+
<line num="77" count="264" type="stmt"/>
|
|
2768
|
+
<line num="78" count="264" type="stmt"/>
|
|
2769
|
+
<line num="79" count="264" type="stmt"/>
|
|
2770
|
+
<line num="80" count="264" type="stmt"/>
|
|
2771
|
+
<line num="81" count="264" type="cond" truecount="1" falsecount="0"/>
|
|
2772
|
+
<line num="82" count="264" type="stmt"/>
|
|
2773
|
+
<line num="83" count="264" type="stmt"/>
|
|
2774
|
+
<line num="84" count="264" type="stmt"/>
|
|
2775
|
+
<line num="85" count="264" type="stmt"/>
|
|
2776
|
+
<line num="86" count="264" type="stmt"/>
|
|
2777
|
+
<line num="87" count="264" type="stmt"/>
|
|
2778
|
+
<line num="88" count="264" type="cond" truecount="0" falsecount="1"/>
|
|
2322
2779
|
<line num="89" count="0" type="stmt"/>
|
|
2323
2780
|
<line num="90" count="0" type="stmt"/>
|
|
2324
2781
|
<line num="91" count="0" type="stmt"/>
|
|
2325
2782
|
<line num="92" count="0" type="stmt"/>
|
|
2326
|
-
<line num="93" count="
|
|
2327
|
-
<line num="94" count="
|
|
2328
|
-
<line num="96" count="
|
|
2329
|
-
<line num="99" count="
|
|
2330
|
-
<line num="101" count="
|
|
2331
|
-
<line num="102" count="
|
|
2332
|
-
<line num="103" count="
|
|
2783
|
+
<line num="93" count="264" type="stmt"/>
|
|
2784
|
+
<line num="94" count="264" type="cond" truecount="1" falsecount="0"/>
|
|
2785
|
+
<line num="96" count="264" type="stmt"/>
|
|
2786
|
+
<line num="99" count="264" type="stmt"/>
|
|
2787
|
+
<line num="101" count="264" type="stmt"/>
|
|
2788
|
+
<line num="102" count="264" type="stmt"/>
|
|
2789
|
+
<line num="103" count="264" type="stmt"/>
|
|
2333
2790
|
</file>
|
|
2334
2791
|
</package>
|
|
2335
2792
|
<package name="src.enums">
|
|
@@ -2354,92 +2811,165 @@
|
|
|
2354
2811
|
</file>
|
|
2355
2812
|
</package>
|
|
2356
2813
|
<package name="src.errors">
|
|
2357
|
-
<metrics statements="
|
|
2358
|
-
<file name="
|
|
2359
|
-
<metrics statements="
|
|
2814
|
+
<metrics statements="132" coveredstatements="132" conditionals="12" coveredconditionals="11" methods="7" coveredmethods="7"/>
|
|
2815
|
+
<file name="di-error.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/src/errors/di-error.mts">
|
|
2816
|
+
<metrics statements="60" coveredstatements="60" conditionals="12" coveredconditionals="11" methods="7" coveredmethods="7"/>
|
|
2360
2817
|
<line num="1" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
2361
2818
|
<line num="2" count="1" type="stmt"/>
|
|
2362
2819
|
<line num="3" count="1" type="stmt"/>
|
|
2363
2820
|
<line num="4" count="1" type="stmt"/>
|
|
2364
2821
|
<line num="5" count="1" type="stmt"/>
|
|
2365
2822
|
<line num="6" count="1" type="stmt"/>
|
|
2823
|
+
<line num="9" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
2824
|
+
<line num="10" count="380" type="stmt"/>
|
|
2825
|
+
<line num="11" count="380" type="stmt"/>
|
|
2826
|
+
<line num="13" count="380" type="cond" truecount="1" falsecount="0"/>
|
|
2827
|
+
<line num="14" count="380" type="stmt"/>
|
|
2828
|
+
<line num="15" count="380" type="stmt"/>
|
|
2829
|
+
<line num="16" count="380" type="stmt"/>
|
|
2830
|
+
<line num="17" count="380" type="stmt"/>
|
|
2831
|
+
<line num="18" count="380" type="stmt"/>
|
|
2832
|
+
<line num="19" count="380" type="stmt"/>
|
|
2833
|
+
<line num="20" count="380" type="stmt"/>
|
|
2834
|
+
<line num="21" count="380" type="stmt"/>
|
|
2835
|
+
<line num="22" count="380" type="stmt"/>
|
|
2836
|
+
<line num="25" count="380" type="cond" truecount="1" falsecount="0"/>
|
|
2837
|
+
<line num="26" count="2" type="stmt"/>
|
|
2838
|
+
<line num="27" count="2" type="stmt"/>
|
|
2839
|
+
<line num="28" count="2" type="stmt"/>
|
|
2840
|
+
<line num="29" count="2" type="stmt"/>
|
|
2841
|
+
<line num="30" count="2" type="stmt"/>
|
|
2842
|
+
<line num="31" count="2" type="stmt"/>
|
|
2843
|
+
<line num="33" count="380" type="cond" truecount="1" falsecount="0"/>
|
|
2844
|
+
<line num="34" count="17" type="stmt"/>
|
|
2845
|
+
<line num="35" count="17" type="stmt"/>
|
|
2846
|
+
<line num="36" count="17" type="cond" truecount="0" falsecount="1"/>
|
|
2847
|
+
<line num="37" count="17" type="stmt"/>
|
|
2848
|
+
<line num="38" count="17" type="stmt"/>
|
|
2849
|
+
<line num="39" count="17" type="stmt"/>
|
|
2850
|
+
<line num="41" count="380" type="cond" truecount="1" falsecount="0"/>
|
|
2851
|
+
<line num="42" count="350" type="stmt"/>
|
|
2852
|
+
<line num="43" count="350" type="stmt"/>
|
|
2853
|
+
<line num="44" count="350" type="stmt"/>
|
|
2854
|
+
<line num="45" count="350" type="stmt"/>
|
|
2855
|
+
<line num="46" count="350" type="stmt"/>
|
|
2856
|
+
<line num="47" count="350" type="stmt"/>
|
|
2857
|
+
<line num="49" count="380" type="cond" truecount="1" falsecount="0"/>
|
|
2858
|
+
<line num="50" count="4" type="stmt"/>
|
|
2859
|
+
<line num="51" count="4" type="stmt"/>
|
|
2860
|
+
<line num="52" count="4" type="stmt"/>
|
|
2861
|
+
<line num="53" count="4" type="stmt"/>
|
|
2862
|
+
<line num="54" count="4" type="stmt"/>
|
|
2863
|
+
<line num="55" count="4" type="stmt"/>
|
|
2864
|
+
<line num="57" count="380" type="cond" truecount="1" falsecount="0"/>
|
|
2865
|
+
<line num="58" count="7" type="stmt"/>
|
|
2866
|
+
<line num="59" count="7" type="stmt"/>
|
|
2867
|
+
<line num="60" count="7" type="stmt"/>
|
|
2868
|
+
<line num="61" count="7" type="cond" truecount="2" falsecount="0"/>
|
|
2869
|
+
<line num="62" count="4" type="stmt"/>
|
|
2870
|
+
<line num="63" count="4" type="stmt"/>
|
|
2871
|
+
<line num="64" count="4" type="stmt"/>
|
|
2872
|
+
<line num="65" count="4" type="stmt"/>
|
|
2873
|
+
<line num="66" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
2874
|
+
<line num="67" count="3" type="stmt"/>
|
|
2875
|
+
<line num="68" count="7" type="stmt"/>
|
|
2876
|
+
<line num="69" count="380" type="stmt"/>
|
|
2877
|
+
</file>
|
|
2878
|
+
<file name="errors.enum.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/src/errors/errors.enum.mts">
|
|
2879
|
+
<metrics statements="8" coveredstatements="8" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
2880
|
+
<line num="1" count="1" type="stmt"/>
|
|
2881
|
+
<line num="2" count="1" type="stmt"/>
|
|
2882
|
+
<line num="3" count="1" type="stmt"/>
|
|
2883
|
+
<line num="4" count="1" type="stmt"/>
|
|
2884
|
+
<line num="5" count="1" type="stmt"/>
|
|
2885
|
+
<line num="6" count="1" type="stmt"/>
|
|
2366
2886
|
<line num="7" count="1" type="stmt"/>
|
|
2887
|
+
<line num="8" count="1" type="stmt"/>
|
|
2367
2888
|
</file>
|
|
2368
2889
|
<file name="factory-not-found.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/src/errors/factory-not-found.mts">
|
|
2369
|
-
<metrics statements="
|
|
2890
|
+
<metrics statements="8" coveredstatements="8" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
2370
2891
|
<line num="1" count="1" type="stmt"/>
|
|
2371
|
-
<line num="
|
|
2372
|
-
<line num="
|
|
2373
|
-
<line num="
|
|
2374
|
-
<line num="
|
|
2375
|
-
<line num="
|
|
2376
|
-
<line num="
|
|
2892
|
+
<line num="2" count="1" type="stmt"/>
|
|
2893
|
+
<line num="3" count="1" type="stmt"/>
|
|
2894
|
+
<line num="4" count="1" type="stmt"/>
|
|
2895
|
+
<line num="5" count="1" type="stmt"/>
|
|
2896
|
+
<line num="6" count="1" type="stmt"/>
|
|
2897
|
+
<line num="7" count="1" type="stmt"/>
|
|
2898
|
+
<line num="8" count="1" type="stmt"/>
|
|
2377
2899
|
</file>
|
|
2378
2900
|
<file name="factory-token-not-resolved.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/src/errors/factory-token-not-resolved.mts">
|
|
2379
|
-
<metrics statements="
|
|
2901
|
+
<metrics statements="10" coveredstatements="10" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
2902
|
+
<line num="1" count="1" type="stmt"/>
|
|
2903
|
+
<line num="2" count="1" type="stmt"/>
|
|
2380
2904
|
<line num="3" count="1" type="stmt"/>
|
|
2381
|
-
<line num="
|
|
2382
|
-
<line num="
|
|
2383
|
-
<line num="
|
|
2384
|
-
<line num="
|
|
2385
|
-
<line num="
|
|
2386
|
-
<line num="
|
|
2905
|
+
<line num="4" count="1" type="stmt"/>
|
|
2906
|
+
<line num="5" count="1" type="stmt"/>
|
|
2907
|
+
<line num="6" count="1" type="stmt"/>
|
|
2908
|
+
<line num="7" count="1" type="stmt"/>
|
|
2909
|
+
<line num="8" count="1" type="stmt"/>
|
|
2910
|
+
<line num="9" count="1" type="stmt"/>
|
|
2911
|
+
<line num="10" count="1" type="stmt"/>
|
|
2387
2912
|
</file>
|
|
2388
2913
|
<file name="index.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/src/errors/index.mts">
|
|
2389
2914
|
<metrics statements="7" coveredstatements="7" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
2390
2915
|
<line num="1" count="1" type="stmt"/>
|
|
2391
|
-
<line num="2" count="1" type="stmt"/>
|
|
2392
|
-
<line num="3" count="1" type="stmt"/>
|
|
2393
2916
|
<line num="4" count="1" type="stmt"/>
|
|
2394
2917
|
<line num="5" count="1" type="stmt"/>
|
|
2395
2918
|
<line num="6" count="1" type="stmt"/>
|
|
2396
2919
|
<line num="7" count="1" type="stmt"/>
|
|
2920
|
+
<line num="8" count="1" type="stmt"/>
|
|
2921
|
+
<line num="9" count="1" type="stmt"/>
|
|
2397
2922
|
</file>
|
|
2398
2923
|
<file name="instance-destroying.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/src/errors/instance-destroying.mts">
|
|
2399
|
-
<metrics statements="
|
|
2924
|
+
<metrics statements="8" coveredstatements="8" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
2400
2925
|
<line num="1" count="1" type="stmt"/>
|
|
2401
|
-
<line num="
|
|
2402
|
-
<line num="
|
|
2403
|
-
<line num="
|
|
2404
|
-
<line num="
|
|
2405
|
-
<line num="
|
|
2406
|
-
<line num="
|
|
2926
|
+
<line num="2" count="1" type="stmt"/>
|
|
2927
|
+
<line num="3" count="1" type="stmt"/>
|
|
2928
|
+
<line num="4" count="1" type="stmt"/>
|
|
2929
|
+
<line num="5" count="1" type="stmt"/>
|
|
2930
|
+
<line num="6" count="1" type="stmt"/>
|
|
2931
|
+
<line num="7" count="1" type="stmt"/>
|
|
2932
|
+
<line num="8" count="1" type="stmt"/>
|
|
2407
2933
|
</file>
|
|
2408
2934
|
<file name="instance-expired.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/src/errors/instance-expired.mts">
|
|
2409
|
-
<metrics statements="
|
|
2935
|
+
<metrics statements="8" coveredstatements="8" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
2410
2936
|
<line num="1" count="1" type="stmt"/>
|
|
2411
|
-
<line num="
|
|
2412
|
-
<line num="
|
|
2413
|
-
<line num="
|
|
2414
|
-
<line num="
|
|
2415
|
-
<line num="
|
|
2416
|
-
<line num="
|
|
2937
|
+
<line num="2" count="1" type="stmt"/>
|
|
2938
|
+
<line num="3" count="1" type="stmt"/>
|
|
2939
|
+
<line num="4" count="1" type="stmt"/>
|
|
2940
|
+
<line num="5" count="1" type="stmt"/>
|
|
2941
|
+
<line num="6" count="1" type="stmt"/>
|
|
2942
|
+
<line num="7" count="1" type="stmt"/>
|
|
2943
|
+
<line num="8" count="1" type="stmt"/>
|
|
2417
2944
|
</file>
|
|
2418
2945
|
<file name="instance-not-found.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/src/errors/instance-not-found.mts">
|
|
2419
|
-
<metrics statements="
|
|
2946
|
+
<metrics statements="8" coveredstatements="8" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
2420
2947
|
<line num="1" count="1" type="stmt"/>
|
|
2421
|
-
<line num="
|
|
2422
|
-
<line num="
|
|
2423
|
-
<line num="
|
|
2424
|
-
<line num="
|
|
2425
|
-
<line num="
|
|
2426
|
-
<line num="
|
|
2948
|
+
<line num="2" count="1" type="stmt"/>
|
|
2949
|
+
<line num="3" count="1" type="stmt"/>
|
|
2950
|
+
<line num="4" count="1" type="stmt"/>
|
|
2951
|
+
<line num="5" count="1" type="stmt"/>
|
|
2952
|
+
<line num="6" count="1" type="stmt"/>
|
|
2953
|
+
<line num="7" count="1" type="stmt"/>
|
|
2954
|
+
<line num="8" count="1" type="stmt"/>
|
|
2427
2955
|
</file>
|
|
2428
2956
|
<file name="unknown-error.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/src/errors/unknown-error.mts">
|
|
2429
|
-
<metrics statements="
|
|
2957
|
+
<metrics statements="15" coveredstatements="15" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
2430
2958
|
<line num="1" count="1" type="stmt"/>
|
|
2431
|
-
<line num="
|
|
2432
|
-
<line num="
|
|
2433
|
-
<line num="
|
|
2434
|
-
<line num="
|
|
2435
|
-
<line num="
|
|
2436
|
-
<line num="
|
|
2437
|
-
<line num="
|
|
2438
|
-
<line num="
|
|
2439
|
-
<line num="
|
|
2440
|
-
<line num="
|
|
2441
|
-
<line num="
|
|
2442
|
-
<line num="
|
|
2959
|
+
<line num="2" count="1" type="stmt"/>
|
|
2960
|
+
<line num="3" count="1" type="stmt"/>
|
|
2961
|
+
<line num="4" count="1" type="stmt"/>
|
|
2962
|
+
<line num="5" count="1" type="stmt"/>
|
|
2963
|
+
<line num="6" count="1" type="stmt"/>
|
|
2964
|
+
<line num="7" count="1" type="stmt"/>
|
|
2965
|
+
<line num="8" count="1" type="stmt"/>
|
|
2966
|
+
<line num="9" count="1" type="stmt"/>
|
|
2967
|
+
<line num="10" count="1" type="stmt"/>
|
|
2968
|
+
<line num="11" count="1" type="stmt"/>
|
|
2969
|
+
<line num="12" count="1" type="stmt"/>
|
|
2970
|
+
<line num="13" count="1" type="stmt"/>
|
|
2971
|
+
<line num="14" count="1" type="stmt"/>
|
|
2972
|
+
<line num="15" count="1" type="stmt"/>
|
|
2443
2973
|
</file>
|
|
2444
2974
|
</package>
|
|
2445
2975
|
<package name="src.interfaces">
|
|
@@ -2472,97 +3002,203 @@
|
|
|
2472
3002
|
<line num="1" count="1" type="stmt"/>
|
|
2473
3003
|
</file>
|
|
2474
3004
|
</package>
|
|
3005
|
+
<package name="src.testing">
|
|
3006
|
+
<metrics statements="63" coveredstatements="60" conditionals="10" coveredconditionals="8" methods="9" coveredmethods="8"/>
|
|
3007
|
+
<file name="index.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/src/testing/index.mts">
|
|
3008
|
+
<metrics statements="1" coveredstatements="0" conditionals="1" coveredconditionals="0" methods="1" coveredmethods="0"/>
|
|
3009
|
+
<line num="1" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
3010
|
+
</file>
|
|
3011
|
+
<file name="test-container.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/src/testing/test-container.mts">
|
|
3012
|
+
<metrics statements="62" coveredstatements="60" conditionals="9" coveredconditionals="8" methods="8" coveredmethods="8"/>
|
|
3013
|
+
<line num="1" count="1" type="stmt"/>
|
|
3014
|
+
<line num="5" count="1" type="stmt"/>
|
|
3015
|
+
<line num="6" count="1" type="stmt"/>
|
|
3016
|
+
<line num="7" count="1" type="stmt"/>
|
|
3017
|
+
<line num="8" count="1" type="stmt"/>
|
|
3018
|
+
<line num="9" count="1" type="stmt"/>
|
|
3019
|
+
<line num="14" count="1" type="stmt"/>
|
|
3020
|
+
<line num="15" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
3021
|
+
<line num="16" count="11" type="stmt"/>
|
|
3022
|
+
<line num="17" count="11" type="stmt"/>
|
|
3023
|
+
<line num="18" count="11" type="stmt"/>
|
|
3024
|
+
<line num="25" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
3025
|
+
<line num="26" count="5" type="stmt"/>
|
|
3026
|
+
<line num="27" count="5" type="stmt"/>
|
|
3027
|
+
<line num="28" count="5" type="stmt"/>
|
|
3028
|
+
<line num="29" count="5" type="stmt"/>
|
|
3029
|
+
<line num="30" count="5" type="stmt"/>
|
|
3030
|
+
<line num="31" count="5" type="stmt"/>
|
|
3031
|
+
<line num="32" count="5" type="stmt"/>
|
|
3032
|
+
<line num="33" count="5" type="stmt"/>
|
|
3033
|
+
<line num="34" count="5" type="stmt"/>
|
|
3034
|
+
<line num="35" count="5" type="stmt"/>
|
|
3035
|
+
<line num="36" count="5" type="stmt"/>
|
|
3036
|
+
<line num="37" count="5" type="stmt"/>
|
|
3037
|
+
<line num="38" count="5" type="stmt"/>
|
|
3038
|
+
<line num="39" count="5" type="stmt"/>
|
|
3039
|
+
<line num="45" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
3040
|
+
<line num="46" count="5" type="stmt"/>
|
|
3041
|
+
<line num="47" count="5" type="stmt"/>
|
|
3042
|
+
<line num="48" count="5" type="stmt"/>
|
|
3043
|
+
<line num="49" count="5" type="stmt"/>
|
|
3044
|
+
<line num="50" count="5" type="stmt"/>
|
|
3045
|
+
<line num="51" count="5" type="stmt"/>
|
|
3046
|
+
<line num="52" count="5" type="stmt"/>
|
|
3047
|
+
<line num="53" count="5" type="stmt"/>
|
|
3048
|
+
<line num="54" count="1" type="stmt"/>
|
|
3049
|
+
<line num="60" count="1" type="stmt"/>
|
|
3050
|
+
<line num="61" count="1" type="stmt"/>
|
|
3051
|
+
<line num="62" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
3052
|
+
<line num="63" count="13" type="stmt"/>
|
|
3053
|
+
<line num="64" count="13" type="stmt"/>
|
|
3054
|
+
<line num="65" count="13" type="stmt"/>
|
|
3055
|
+
<line num="66" count="13" type="stmt"/>
|
|
3056
|
+
<line num="67" count="13" type="stmt"/>
|
|
3057
|
+
<line num="68" count="13" type="stmt"/>
|
|
3058
|
+
<line num="78" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
3059
|
+
<line num="79" count="11" type="stmt"/>
|
|
3060
|
+
<line num="80" count="11" type="cond" truecount="0" falsecount="1"/>
|
|
3061
|
+
<line num="81" count="0" type="stmt"/>
|
|
3062
|
+
<line num="82" count="0" type="stmt"/>
|
|
3063
|
+
<line num="83" count="11" type="stmt"/>
|
|
3064
|
+
<line num="84" count="11" type="stmt"/>
|
|
3065
|
+
<line num="95" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
3066
|
+
<line num="96" count="3" type="stmt"/>
|
|
3067
|
+
<line num="97" count="3" type="stmt"/>
|
|
3068
|
+
<line num="108" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
3069
|
+
<line num="109" count="4" type="stmt"/>
|
|
3070
|
+
<line num="110" count="4" type="stmt"/>
|
|
3071
|
+
<line num="117" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
3072
|
+
<line num="118" count="1" type="stmt"/>
|
|
3073
|
+
<line num="119" count="1" type="stmt"/>
|
|
3074
|
+
<line num="120" count="1" type="stmt"/>
|
|
3075
|
+
</file>
|
|
3076
|
+
</package>
|
|
2475
3077
|
<package name="src.utils">
|
|
2476
|
-
<metrics statements="
|
|
3078
|
+
<metrics statements="198" coveredstatements="188" conditionals="25" coveredconditionals="23" methods="9" coveredmethods="8"/>
|
|
2477
3079
|
<file name="defer.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/src/utils/defer.mts">
|
|
2478
|
-
<metrics statements="
|
|
2479
|
-
<line num="
|
|
2480
|
-
<line num="
|
|
2481
|
-
<line num="
|
|
2482
|
-
<line num="
|
|
2483
|
-
<line num="
|
|
2484
|
-
<line num="
|
|
2485
|
-
<line num="
|
|
2486
|
-
<line num="
|
|
2487
|
-
<line num="
|
|
2488
|
-
<line num="
|
|
2489
|
-
<line num="
|
|
2490
|
-
<line num="
|
|
2491
|
-
<line num="
|
|
2492
|
-
<line num="
|
|
2493
|
-
<line num="
|
|
2494
|
-
<line num="
|
|
2495
|
-
<line num="
|
|
2496
|
-
<line num="
|
|
2497
|
-
<line num="
|
|
2498
|
-
<line num="
|
|
2499
|
-
<line num="
|
|
2500
|
-
<line num="
|
|
2501
|
-
<line num="
|
|
2502
|
-
<line num="
|
|
2503
|
-
<line num="
|
|
2504
|
-
<line num="
|
|
2505
|
-
<line num="
|
|
2506
|
-
<line num="
|
|
2507
|
-
<line num="
|
|
2508
|
-
<line num="
|
|
2509
|
-
<line num="
|
|
2510
|
-
<line num="
|
|
2511
|
-
<line num="
|
|
2512
|
-
<line num="
|
|
2513
|
-
<line num="
|
|
2514
|
-
<line num="
|
|
2515
|
-
<line num="
|
|
2516
|
-
<line num="
|
|
2517
|
-
<line num="
|
|
3080
|
+
<metrics statements="73" coveredstatements="73" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
3081
|
+
<line num="1" count="1" type="stmt"/>
|
|
3082
|
+
<line num="2" count="1" type="stmt"/>
|
|
3083
|
+
<line num="3" count="1" type="stmt"/>
|
|
3084
|
+
<line num="4" count="1" type="stmt"/>
|
|
3085
|
+
<line num="5" count="1" type="stmt"/>
|
|
3086
|
+
<line num="6" count="1" type="stmt"/>
|
|
3087
|
+
<line num="7" count="1" type="stmt"/>
|
|
3088
|
+
<line num="8" count="1" type="stmt"/>
|
|
3089
|
+
<line num="9" count="1" type="stmt"/>
|
|
3090
|
+
<line num="10" count="1" type="stmt"/>
|
|
3091
|
+
<line num="11" count="1" type="stmt"/>
|
|
3092
|
+
<line num="12" count="1" type="stmt"/>
|
|
3093
|
+
<line num="13" count="1" type="stmt"/>
|
|
3094
|
+
<line num="14" count="1" type="stmt"/>
|
|
3095
|
+
<line num="15" count="1" type="stmt"/>
|
|
3096
|
+
<line num="16" count="1" type="stmt"/>
|
|
3097
|
+
<line num="17" count="1" type="stmt"/>
|
|
3098
|
+
<line num="18" count="1" type="stmt"/>
|
|
3099
|
+
<line num="19" count="1" type="stmt"/>
|
|
3100
|
+
<line num="20" count="1" type="stmt"/>
|
|
3101
|
+
<line num="21" count="1" type="stmt"/>
|
|
3102
|
+
<line num="22" count="1" type="stmt"/>
|
|
3103
|
+
<line num="23" count="1" type="stmt"/>
|
|
3104
|
+
<line num="24" count="1" type="stmt"/>
|
|
3105
|
+
<line num="25" count="1" type="stmt"/>
|
|
3106
|
+
<line num="26" count="1" type="stmt"/>
|
|
3107
|
+
<line num="27" count="1" type="stmt"/>
|
|
3108
|
+
<line num="28" count="1" type="stmt"/>
|
|
3109
|
+
<line num="29" count="1" type="stmt"/>
|
|
3110
|
+
<line num="30" count="1" type="stmt"/>
|
|
3111
|
+
<line num="31" count="1" type="stmt"/>
|
|
3112
|
+
<line num="32" count="1" type="stmt"/>
|
|
3113
|
+
<line num="33" count="1" type="stmt"/>
|
|
3114
|
+
<line num="34" count="1" type="stmt"/>
|
|
3115
|
+
<line num="35" count="1" type="stmt"/>
|
|
3116
|
+
<line num="36" count="1" type="stmt"/>
|
|
3117
|
+
<line num="37" count="1" type="stmt"/>
|
|
3118
|
+
<line num="38" count="1" type="stmt"/>
|
|
3119
|
+
<line num="39" count="1" type="stmt"/>
|
|
3120
|
+
<line num="40" count="1" type="stmt"/>
|
|
3121
|
+
<line num="41" count="1" type="stmt"/>
|
|
3122
|
+
<line num="42" count="1" type="stmt"/>
|
|
3123
|
+
<line num="43" count="1" type="stmt"/>
|
|
3124
|
+
<line num="44" count="1" type="stmt"/>
|
|
3125
|
+
<line num="45" count="1" type="stmt"/>
|
|
3126
|
+
<line num="46" count="1" type="stmt"/>
|
|
3127
|
+
<line num="47" count="1" type="stmt"/>
|
|
3128
|
+
<line num="48" count="1" type="stmt"/>
|
|
3129
|
+
<line num="49" count="1" type="stmt"/>
|
|
3130
|
+
<line num="50" count="1" type="stmt"/>
|
|
3131
|
+
<line num="51" count="1" type="stmt"/>
|
|
3132
|
+
<line num="52" count="1" type="stmt"/>
|
|
3133
|
+
<line num="53" count="1" type="stmt"/>
|
|
3134
|
+
<line num="54" count="1" type="stmt"/>
|
|
3135
|
+
<line num="55" count="1" type="stmt"/>
|
|
3136
|
+
<line num="56" count="1" type="stmt"/>
|
|
3137
|
+
<line num="57" count="1" type="stmt"/>
|
|
3138
|
+
<line num="58" count="1" type="stmt"/>
|
|
3139
|
+
<line num="59" count="1" type="stmt"/>
|
|
3140
|
+
<line num="60" count="1" type="stmt"/>
|
|
3141
|
+
<line num="61" count="1" type="stmt"/>
|
|
3142
|
+
<line num="62" count="1" type="stmt"/>
|
|
3143
|
+
<line num="63" count="1" type="stmt"/>
|
|
3144
|
+
<line num="64" count="1" type="stmt"/>
|
|
3145
|
+
<line num="65" count="1" type="stmt"/>
|
|
3146
|
+
<line num="66" count="1" type="stmt"/>
|
|
3147
|
+
<line num="67" count="1" type="stmt"/>
|
|
3148
|
+
<line num="68" count="1" type="stmt"/>
|
|
3149
|
+
<line num="69" count="1" type="stmt"/>
|
|
3150
|
+
<line num="70" count="1" type="stmt"/>
|
|
3151
|
+
<line num="71" count="1" type="stmt"/>
|
|
3152
|
+
<line num="72" count="1" type="stmt"/>
|
|
3153
|
+
<line num="73" count="1" type="stmt"/>
|
|
2518
3154
|
</file>
|
|
2519
3155
|
<file name="get-injectable-token.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/src/utils/get-injectable-token.mts">
|
|
2520
3156
|
<metrics statements="12" coveredstatements="12" conditionals="3" coveredconditionals="3" methods="1" coveredmethods="1"/>
|
|
2521
3157
|
<line num="3" count="1" type="stmt"/>
|
|
2522
3158
|
<line num="5" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
2523
|
-
<line num="6" count="
|
|
2524
|
-
<line num="9" count="
|
|
2525
|
-
<line num="11" count="
|
|
2526
|
-
<line num="12" count="
|
|
3159
|
+
<line num="6" count="388" type="stmt"/>
|
|
3160
|
+
<line num="9" count="388" type="stmt"/>
|
|
3161
|
+
<line num="11" count="388" type="stmt"/>
|
|
3162
|
+
<line num="12" count="388" type="cond" truecount="1" falsecount="0"/>
|
|
2527
3163
|
<line num="13" count="2" type="stmt"/>
|
|
2528
3164
|
<line num="14" count="2" type="stmt"/>
|
|
2529
3165
|
<line num="15" count="2" type="stmt"/>
|
|
2530
3166
|
<line num="16" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
2531
|
-
<line num="18" count="
|
|
2532
|
-
<line num="19" count="
|
|
3167
|
+
<line num="18" count="386" type="stmt"/>
|
|
3168
|
+
<line num="19" count="386" type="stmt"/>
|
|
2533
3169
|
</file>
|
|
2534
3170
|
<file name="get-injectors.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/src/utils/get-injectors.mts">
|
|
2535
3171
|
<metrics statements="110" coveredstatements="100" conditionals="22" coveredconditionals="20" methods="8" coveredmethods="7"/>
|
|
2536
3172
|
<line num="14" count="1" type="stmt"/>
|
|
2537
3173
|
<line num="73" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
2538
|
-
<line num="74" count="
|
|
2539
|
-
<line num="76" count="
|
|
2540
|
-
<line num="77" count="
|
|
2541
|
-
<line num="78" count="
|
|
2542
|
-
<line num="79" count="
|
|
2543
|
-
<line num="80" count="
|
|
2544
|
-
<line num="81" count="
|
|
2545
|
-
<line num="82" count="
|
|
2546
|
-
<line num="83" count="
|
|
2547
|
-
<line num="84" count="
|
|
3174
|
+
<line num="74" count="15" type="stmt"/>
|
|
3175
|
+
<line num="76" count="15" type="cond" truecount="1" falsecount="0"/>
|
|
3176
|
+
<line num="77" count="665" type="stmt"/>
|
|
3177
|
+
<line num="78" count="665" type="stmt"/>
|
|
3178
|
+
<line num="79" count="665" type="stmt"/>
|
|
3179
|
+
<line num="80" count="665" type="stmt"/>
|
|
3180
|
+
<line num="81" count="665" type="stmt"/>
|
|
3181
|
+
<line num="82" count="665" type="stmt"/>
|
|
3182
|
+
<line num="83" count="15" type="cond" truecount="1" falsecount="0"/>
|
|
3183
|
+
<line num="84" count="154" type="cond" truecount="1" falsecount="0"/>
|
|
2548
3184
|
<line num="85" count="1" type="stmt"/>
|
|
2549
3185
|
<line num="86" count="1" type="stmt"/>
|
|
2550
3186
|
<line num="87" count="1" type="stmt"/>
|
|
2551
3187
|
<line num="88" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
2552
|
-
<line num="89" count="
|
|
2553
|
-
<line num="90" count="
|
|
2554
|
-
<line num="92" count="
|
|
2555
|
-
<line num="93" count="
|
|
2556
|
-
<line num="95" count="
|
|
2557
|
-
<line num="96" count="
|
|
2558
|
-
<line num="101" count="
|
|
2559
|
-
<line num="102" count="
|
|
2560
|
-
<line num="103" count="
|
|
3188
|
+
<line num="89" count="153" type="stmt"/>
|
|
3189
|
+
<line num="90" count="154" type="stmt"/>
|
|
3190
|
+
<line num="92" count="15" type="stmt"/>
|
|
3191
|
+
<line num="93" count="15" type="stmt"/>
|
|
3192
|
+
<line num="95" count="15" type="cond" truecount="1" falsecount="0"/>
|
|
3193
|
+
<line num="96" count="13" type="stmt"/>
|
|
3194
|
+
<line num="101" count="13" type="stmt"/>
|
|
3195
|
+
<line num="102" count="13" type="stmt"/>
|
|
3196
|
+
<line num="103" count="13" type="cond" truecount="2" falsecount="0"/>
|
|
2561
3197
|
<line num="104" count="1" type="stmt"/>
|
|
2562
3198
|
<line num="105" count="1" type="stmt"/>
|
|
2563
3199
|
<line num="106" count="1" type="stmt"/>
|
|
2564
|
-
<line num="107" count="1" type="
|
|
2565
|
-
<line num="108" count="
|
|
3200
|
+
<line num="107" count="1" type="stmt"/>
|
|
3201
|
+
<line num="108" count="12" type="cond" truecount="1" falsecount="0"/>
|
|
2566
3202
|
<line num="109" count="1" type="stmt"/>
|
|
2567
3203
|
<line num="110" count="1" type="stmt"/>
|
|
2568
3204
|
<line num="111" count="1" type="cond" truecount="0" falsecount="1"/>
|
|
@@ -2572,84 +3208,83 @@
|
|
|
2572
3208
|
<line num="115" count="0" type="stmt"/>
|
|
2573
3209
|
<line num="116" count="1" type="stmt"/>
|
|
2574
3210
|
<line num="117" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
2575
|
-
<line num="119" count="
|
|
2576
|
-
<line num="120" count="
|
|
2577
|
-
<line num="121" count="
|
|
2578
|
-
<line num="122" count="
|
|
2579
|
-
<line num="123" count="
|
|
2580
|
-
<line num="124" count="
|
|
2581
|
-
<line num="126" count="
|
|
2582
|
-
<line num="127" count="
|
|
2583
|
-
<line num="129" count="
|
|
2584
|
-
<line num="130" count="
|
|
2585
|
-
<line num="131" count="
|
|
2586
|
-
<line num="132" count="
|
|
2587
|
-
<line num="133" count="
|
|
2588
|
-
<line num="134" count="
|
|
2589
|
-
<line num="135" count="
|
|
2590
|
-
<line num="136" count="
|
|
2591
|
-
<line num="137" count="
|
|
2592
|
-
<line num="138" count="
|
|
2593
|
-
<line num="139" count="
|
|
2594
|
-
<line num="140" count="
|
|
2595
|
-
<line num="141" count="
|
|
2596
|
-
<line num="142" count="
|
|
2597
|
-
<line num="143" count="
|
|
2598
|
-
<line num="144" count="
|
|
2599
|
-
<line num="145" count="
|
|
2600
|
-
<line num="146" count="
|
|
2601
|
-
<line num="147" count="
|
|
2602
|
-
<line num="148" count="
|
|
2603
|
-
<line num="149" count="
|
|
2604
|
-
<line num="150" count="
|
|
2605
|
-
<line num="151" count="
|
|
2606
|
-
<line num="152" count="
|
|
2607
|
-
<line num="153" count="
|
|
2608
|
-
<line num="154" count="
|
|
2609
|
-
<line num="155" count="
|
|
2610
|
-
<line num="156" count="
|
|
2611
|
-
<line num="158" count="
|
|
2612
|
-
<line num="165" count="
|
|
2613
|
-
<line num="167" count="
|
|
2614
|
-
<line num="169" count="
|
|
2615
|
-
<line num="170" count="
|
|
2616
|
-
<line num="171" count="
|
|
2617
|
-
<line num="172" count="
|
|
2618
|
-
<line num="173" count="
|
|
2619
|
-
<line num="174" count="
|
|
2620
|
-
<line num="175" count="
|
|
2621
|
-
<line num="176" count="
|
|
2622
|
-
<line num="177" count="
|
|
3211
|
+
<line num="119" count="11" type="stmt"/>
|
|
3212
|
+
<line num="120" count="11" type="stmt"/>
|
|
3213
|
+
<line num="121" count="11" type="stmt"/>
|
|
3214
|
+
<line num="122" count="11" type="stmt"/>
|
|
3215
|
+
<line num="123" count="11" type="stmt"/>
|
|
3216
|
+
<line num="124" count="11" type="stmt"/>
|
|
3217
|
+
<line num="126" count="11" type="stmt"/>
|
|
3218
|
+
<line num="127" count="13" type="stmt"/>
|
|
3219
|
+
<line num="129" count="15" type="cond" truecount="1" falsecount="0"/>
|
|
3220
|
+
<line num="130" count="294" type="cond" truecount="1" falsecount="0"/>
|
|
3221
|
+
<line num="131" count="334" type="stmt"/>
|
|
3222
|
+
<line num="132" count="334" type="stmt"/>
|
|
3223
|
+
<line num="133" count="334" type="stmt"/>
|
|
3224
|
+
<line num="134" count="334" type="cond" truecount="1" falsecount="0"/>
|
|
3225
|
+
<line num="135" count="40" type="stmt"/>
|
|
3226
|
+
<line num="136" count="40" type="stmt"/>
|
|
3227
|
+
<line num="137" count="40" type="stmt"/>
|
|
3228
|
+
<line num="138" count="40" type="cond" truecount="1" falsecount="0"/>
|
|
3229
|
+
<line num="139" count="294" type="stmt"/>
|
|
3230
|
+
<line num="140" count="294" type="stmt"/>
|
|
3231
|
+
<line num="141" count="294" type="stmt"/>
|
|
3232
|
+
<line num="142" count="294" type="stmt"/>
|
|
3233
|
+
<line num="143" count="294" type="stmt"/>
|
|
3234
|
+
<line num="144" count="334" type="cond" truecount="1" falsecount="0"/>
|
|
3235
|
+
<line num="145" count="43" type="stmt"/>
|
|
3236
|
+
<line num="146" count="43" type="stmt"/>
|
|
3237
|
+
<line num="147" count="334" type="stmt"/>
|
|
3238
|
+
<line num="148" count="334" type="stmt"/>
|
|
3239
|
+
<line num="149" count="334" type="stmt"/>
|
|
3240
|
+
<line num="150" count="334" type="stmt"/>
|
|
3241
|
+
<line num="151" count="334" type="stmt"/>
|
|
3242
|
+
<line num="152" count="334" type="stmt"/>
|
|
3243
|
+
<line num="153" count="334" type="stmt"/>
|
|
3244
|
+
<line num="154" count="334" type="stmt"/>
|
|
3245
|
+
<line num="155" count="334" type="stmt"/>
|
|
3246
|
+
<line num="156" count="294" type="stmt"/>
|
|
3247
|
+
<line num="158" count="15" type="cond" truecount="1" falsecount="0"/>
|
|
3248
|
+
<line num="165" count="100" type="stmt"/>
|
|
3249
|
+
<line num="167" count="100" type="cond" truecount="1" falsecount="0"/>
|
|
3250
|
+
<line num="169" count="100" type="stmt"/>
|
|
3251
|
+
<line num="170" count="100" type="stmt"/>
|
|
3252
|
+
<line num="171" count="100" type="stmt"/>
|
|
3253
|
+
<line num="172" count="100" type="stmt"/>
|
|
3254
|
+
<line num="173" count="100" type="cond" truecount="2" falsecount="0"/>
|
|
3255
|
+
<line num="174" count="43" type="stmt"/>
|
|
3256
|
+
<line num="175" count="43" type="stmt"/>
|
|
3257
|
+
<line num="176" count="43" type="stmt"/>
|
|
3258
|
+
<line num="177" count="43" type="cond" truecount="0" falsecount="1"/>
|
|
2623
3259
|
<line num="178" count="0" type="stmt"/>
|
|
2624
3260
|
<line num="179" count="0" type="stmt"/>
|
|
2625
|
-
<line num="180" count="
|
|
2626
|
-
<line num="181" count="
|
|
2627
|
-
<line num="182" count="
|
|
2628
|
-
<line num="183" count="
|
|
3261
|
+
<line num="180" count="43" type="stmt"/>
|
|
3262
|
+
<line num="181" count="43" type="stmt"/>
|
|
3263
|
+
<line num="182" count="43" type="stmt"/>
|
|
3264
|
+
<line num="183" count="43" type="stmt"/>
|
|
2629
3265
|
<line num="184" count="0" type="stmt"/>
|
|
2630
3266
|
<line num="185" count="0" type="stmt"/>
|
|
2631
3267
|
<line num="186" count="0" type="stmt"/>
|
|
2632
3268
|
<line num="187" count="0" type="stmt"/>
|
|
2633
|
-
<line num="188" count="
|
|
2634
|
-
<line num="189" count="
|
|
2635
|
-
<line num="190" count="
|
|
2636
|
-
<line num="191" count="
|
|
2637
|
-
<line num="192" count="
|
|
2638
|
-
<line num="194" count="
|
|
2639
|
-
<line num="195" count="
|
|
2640
|
-
<line num="196" count="
|
|
2641
|
-
<line num="197" count="
|
|
2642
|
-
<line num="198" count="
|
|
2643
|
-
<line num="199" count="
|
|
2644
|
-
<line num="201" count="
|
|
2645
|
-
<line num="202" count="
|
|
3269
|
+
<line num="188" count="43" type="stmt"/>
|
|
3270
|
+
<line num="189" count="43" type="stmt"/>
|
|
3271
|
+
<line num="190" count="43" type="cond" truecount="1" falsecount="0"/>
|
|
3272
|
+
<line num="191" count="55" type="stmt"/>
|
|
3273
|
+
<line num="192" count="100" type="stmt"/>
|
|
3274
|
+
<line num="194" count="15" type="stmt"/>
|
|
3275
|
+
<line num="195" count="15" type="stmt"/>
|
|
3276
|
+
<line num="196" count="15" type="stmt"/>
|
|
3277
|
+
<line num="197" count="15" type="stmt"/>
|
|
3278
|
+
<line num="198" count="15" type="stmt"/>
|
|
3279
|
+
<line num="199" count="15" type="stmt"/>
|
|
3280
|
+
<line num="201" count="15" type="stmt"/>
|
|
3281
|
+
<line num="202" count="15" type="stmt"/>
|
|
2646
3282
|
</file>
|
|
2647
3283
|
<file name="index.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/src/utils/index.mts">
|
|
2648
|
-
<metrics statements="
|
|
3284
|
+
<metrics statements="3" coveredstatements="3" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
2649
3285
|
<line num="1" count="1" type="stmt"/>
|
|
2650
3286
|
<line num="2" count="1" type="stmt"/>
|
|
2651
3287
|
<line num="3" count="1" type="stmt"/>
|
|
2652
|
-
<line num="4" count="1" type="stmt"/>
|
|
2653
3288
|
</file>
|
|
2654
3289
|
<file name="types.mts" path="/Volumes/Dev/Projects/krona/navios/packages/di/src/utils/types.mts">
|
|
2655
3290
|
<metrics statements="0" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|