git-digger 1.5.22 → 1.5.24
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/kotlin/Kotlin-DateTime-library-kotlinx-datetime.js +1 -1
- package/kotlin/clikt-clikt-mordant.js +2 -2
- package/kotlin/clikt-clikt.js +16 -14
- package/kotlin/clikt-clikt.js.map +1 -1
- package/kotlin/command-line-tools-digger-cli.js +86 -54
- package/kotlin/command-line-tools-digger-cli.js.map +1 -1
- package/kotlin/kotlin-kotlin-stdlib.js +6 -6
- package/kotlin/kotlin-kotlin-stdlib.js.map +1 -1
- package/package.json +1 -1
|
@@ -330,7 +330,7 @@
|
|
|
330
330
|
return tmp;
|
|
331
331
|
}
|
|
332
332
|
initMetadataForInterface(AbstractWithOffsetBuilder, 'AbstractWithOffsetBuilder', VOID, VOID, [WithUtcOffset]);
|
|
333
|
-
initMetadataForClass(Builder, 'Builder', VOID, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder, AbstractWithOffsetBuilder, WithTime,
|
|
333
|
+
initMetadataForClass(Builder, 'Builder', VOID, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder, AbstractWithOffsetBuilder, WithTime, WithUtcOffset, WithDate]);
|
|
334
334
|
initMetadataForClass(AbstractDateTimeFormat, 'AbstractDateTimeFormat');
|
|
335
335
|
initMetadataForClass(DateTimeComponentsFormat, 'DateTimeComponentsFormat', VOID, AbstractDateTimeFormat);
|
|
336
336
|
initMetadataForClass(TwoDigitNumber, 'TwoDigitNumber');
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
var Unit_instance = kotlin_kotlin.$_$.h3;
|
|
7
7
|
var protoOf = kotlin_kotlin.$_$.p8;
|
|
8
8
|
var initMetadataForClass = kotlin_kotlin.$_$.q7;
|
|
9
|
-
var selfAndAncestors = kotlin_clikt_clikt.$_$.
|
|
9
|
+
var selfAndAncestors = kotlin_clikt_clikt.$_$.e;
|
|
10
10
|
var mapNotNull = kotlin_kotlin.$_$.p9;
|
|
11
11
|
var firstOrNull = kotlin_kotlin.$_$.k9;
|
|
12
12
|
var Terminal_init_$Create$ = kotlin_mordant_mordant.$_$.g;
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
var Terminal = kotlin_mordant_mordant.$_$.b;
|
|
17
17
|
var Whitespace_NORMAL_getInstance = kotlin_mordant_mordant.$_$.e;
|
|
18
18
|
var Text_init_$Create$ = kotlin_mordant_mordant.$_$.h;
|
|
19
|
-
var AbstractHelpFormatter = kotlin_clikt_clikt.$_$.
|
|
19
|
+
var AbstractHelpFormatter = kotlin_clikt_clikt.$_$.g;
|
|
20
20
|
var verticalLayout = kotlin_mordant_mordant.$_$.a;
|
|
21
21
|
var charSequenceLength = kotlin_kotlin.$_$.g7;
|
|
22
22
|
var definitionList = kotlin_mordant_mordant.$_$.c;
|
package/kotlin/clikt-clikt.js
CHANGED
|
@@ -232,8 +232,8 @@
|
|
|
232
232
|
initMetadataForClass(IncorrectOptionValueCount, 'IncorrectOptionValueCount', VOID, UsageError);
|
|
233
233
|
initMetadataForClass(MissingArgument, 'MissingArgument', VOID, UsageError);
|
|
234
234
|
initMetadataForClass(IncorrectArgumentValueCount, 'IncorrectArgumentValueCount', VOID, UsageError);
|
|
235
|
-
initMetadataForClass(ProgramResult, 'ProgramResult', VOID, CliktError);
|
|
236
235
|
initMetadataForClass(PrintMessage, 'PrintMessage', VOID, CliktError);
|
|
236
|
+
initMetadataForClass(ProgramResult, 'ProgramResult', VOID, CliktError);
|
|
237
237
|
initMetadataForClass(PrintCompletionMessage, 'PrintCompletionMessage', VOID, PrintMessage);
|
|
238
238
|
initMetadataForClass(InvalidFileFormat, 'InvalidFileFormat', VOID, UsageError);
|
|
239
239
|
initMetadataForClass(NoSuchSubcommand, 'NoSuchSubcommand', VOID, UsageError);
|
|
@@ -2654,6 +2654,12 @@
|
|
|
2654
2654
|
var tmp0_elvis_lhs = tmp;
|
|
2655
2655
|
return localization.c1m(tmp0_elvis_lhs == null ? '' : tmp0_elvis_lhs, this.b1m_1);
|
|
2656
2656
|
};
|
|
2657
|
+
function PrintMessage(message, statusCode, printError) {
|
|
2658
|
+
statusCode = statusCode === VOID ? 0 : statusCode;
|
|
2659
|
+
printError = printError === VOID ? false : printError;
|
|
2660
|
+
CliktError.call(this, message, VOID, statusCode, printError);
|
|
2661
|
+
captureStack(this, PrintMessage);
|
|
2662
|
+
}
|
|
2657
2663
|
function ProgramResult() {
|
|
2658
2664
|
}
|
|
2659
2665
|
function PrintCompletionMessage(message) {
|
|
@@ -2670,12 +2676,6 @@
|
|
|
2670
2676
|
protoOf(InvalidFileFormat).z1j = function (localization, formatter) {
|
|
2671
2677
|
return this.i1m_1 == null ? localization.k1m(this.h1m_1, ensureNotNull(this.message)) : localization.j1m(this.h1m_1, this.i1m_1, ensureNotNull(this.message));
|
|
2672
2678
|
};
|
|
2673
|
-
function PrintMessage(message, statusCode, printError) {
|
|
2674
|
-
statusCode = statusCode === VOID ? 0 : statusCode;
|
|
2675
|
-
printError = printError === VOID ? false : printError;
|
|
2676
|
-
CliktError.call(this, message, VOID, statusCode, printError);
|
|
2677
|
-
captureStack(this, PrintMessage);
|
|
2678
|
-
}
|
|
2679
2679
|
function NoSuchSubcommand(paramName, possibilities) {
|
|
2680
2680
|
possibilities = possibilities === VOID ? emptyList() : possibilities;
|
|
2681
2681
|
UsageError.call(this, null, paramName);
|
|
@@ -6783,13 +6783,15 @@
|
|
|
6783
6783
|
_.$_$ = _.$_$ || {};
|
|
6784
6784
|
_.$_$.a = CoreCliktCommand;
|
|
6785
6785
|
_.$_$.b = FileNotFound;
|
|
6786
|
-
_.$_$.c =
|
|
6787
|
-
_.$_$.d =
|
|
6788
|
-
_.$_$.e =
|
|
6789
|
-
_.$_$.f =
|
|
6790
|
-
_.$_$.g =
|
|
6791
|
-
_.$_$.h =
|
|
6792
|
-
_.$_$.i =
|
|
6786
|
+
_.$_$.c = PrintMessage;
|
|
6787
|
+
_.$_$.d = main;
|
|
6788
|
+
_.$_$.e = selfAndAncestors;
|
|
6789
|
+
_.$_$.f = subcommands;
|
|
6790
|
+
_.$_$.g = AbstractHelpFormatter;
|
|
6791
|
+
_.$_$.h = argument;
|
|
6792
|
+
_.$_$.i = default_0;
|
|
6793
|
+
_.$_$.j = eagerOption;
|
|
6794
|
+
_.$_$.k = option;
|
|
6793
6795
|
//endregion
|
|
6794
6796
|
return _;
|
|
6795
6797
|
}(module.exports, require('./kotlin-kotlin-stdlib.js')));
|