@cruglobal/godtools-shared 1.2.0-PR799-SNAPSHOT.1774 → 1.2.0-PR799-SNAPSHOT.1776
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/antlr-kotlin-antlr-kotlin-runtime.js +3 -3
- package/kotlin-kotlin-stdlib.js +16 -16
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlin-mpp-godtools-tool-parser-module-parser.js +510 -503
- package/kotlin-mpp-godtools-tool-parser-module-parser.js.map +1 -1
- package/kotlin-mpp-godtools-tool-parser-publishing-npm.d.ts +3 -3
- package/package.json +1 -1
|
@@ -69,8 +69,8 @@
|
|
|
69
69
|
var hashCode = kotlin_kotlin.$_$.g6;
|
|
70
70
|
var UnsupportedOperationException_init_$Create$_0 = kotlin_kotlin.$_$.s1;
|
|
71
71
|
var asJsReadonlySetView = kotlin_kotlin.$_$.v2;
|
|
72
|
-
var KtSet = kotlin_kotlin.$_$.w2;
|
|
73
72
|
var Collection = kotlin_kotlin.$_$.p2;
|
|
73
|
+
var KtSet = kotlin_kotlin.$_$.w2;
|
|
74
74
|
var IllegalStateException_init_$Create$_0 = kotlin_kotlin.$_$.c1;
|
|
75
75
|
var noWhenBranchMatchedException = kotlin_kotlin.$_$.y9;
|
|
76
76
|
var copyOfRange = kotlin_kotlin.$_$.h3;
|
|
@@ -160,12 +160,12 @@
|
|
|
160
160
|
initMetadataForClass(ATN, 'ATN');
|
|
161
161
|
initMetadataForCompanion(Companion_8);
|
|
162
162
|
initMetadataForClass(ATNConfig, 'ATNConfig');
|
|
163
|
-
initMetadataForClass(Array2DHashSet, 'Array2DHashSet', Array2DHashSet, VOID, [
|
|
163
|
+
initMetadataForClass(Array2DHashSet, 'Array2DHashSet', Array2DHashSet, VOID, [Collection, KtSet]);
|
|
164
164
|
initMetadataForClass(AbstractConfigHashSet, 'AbstractConfigHashSet', VOID, Array2DHashSet);
|
|
165
165
|
initMetadataForClass(ConfigHashSet, 'ConfigHashSet', ConfigHashSet, AbstractConfigHashSet);
|
|
166
166
|
initMetadataForClass(AbstractEqualityComparator, 'AbstractEqualityComparator');
|
|
167
167
|
initMetadataForObject(ConfigEqualityComparator, 'ConfigEqualityComparator', VOID, AbstractEqualityComparator);
|
|
168
|
-
initMetadataForClass(ATNConfigSet, 'ATNConfigSet', ATNConfigSet, VOID, [
|
|
168
|
+
initMetadataForClass(ATNConfigSet, 'ATNConfigSet', ATNConfigSet, VOID, [Collection, KtSet]);
|
|
169
169
|
initMetadataForCompanion(Companion_9);
|
|
170
170
|
initMetadataForClass(ATNDeserializationOptions, 'ATNDeserializationOptions', ATNDeserializationOptions_init_$Create$);
|
|
171
171
|
initMetadataForCompanion(Companion_10);
|
package/kotlin-kotlin-stdlib.js
CHANGED
|
@@ -46,11 +46,6 @@ if (typeof Array.prototype.fill === 'undefined') {
|
|
|
46
46
|
Object.defineProperty(TypedArray.prototype, 'fill', {value: Array.prototype.fill});
|
|
47
47
|
}
|
|
48
48
|
});
|
|
49
|
-
if (typeof Math.log2 === 'undefined') {
|
|
50
|
-
Math.log2 = function (x) {
|
|
51
|
-
return Math.log(x) * Math.LOG2E;
|
|
52
|
-
};
|
|
53
|
-
}
|
|
54
49
|
if (typeof Math.clz32 === 'undefined') {
|
|
55
50
|
Math.clz32 = function (log, LN2) {
|
|
56
51
|
return function (x) {
|
|
@@ -62,6 +57,17 @@ if (typeof Math.clz32 === 'undefined') {
|
|
|
62
57
|
};
|
|
63
58
|
}(Math.log, Math.LN2);
|
|
64
59
|
}
|
|
60
|
+
if (typeof Math.log2 === 'undefined') {
|
|
61
|
+
Math.log2 = function (x) {
|
|
62
|
+
return Math.log(x) * Math.LOG2E;
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
if (typeof String.prototype.startsWith === 'undefined') {
|
|
66
|
+
Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
|
|
67
|
+
position = position || 0;
|
|
68
|
+
return this.lastIndexOf(searchString, position) === position;
|
|
69
|
+
}});
|
|
70
|
+
}
|
|
65
71
|
if (typeof String.prototype.endsWith === 'undefined') {
|
|
66
72
|
Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
|
|
67
73
|
var subjectString = this.toString();
|
|
@@ -73,12 +79,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
73
79
|
return lastIndex !== -1 && lastIndex === position;
|
|
74
80
|
}});
|
|
75
81
|
}
|
|
76
|
-
if (typeof String.prototype.startsWith === 'undefined') {
|
|
77
|
-
Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
|
|
78
|
-
position = position || 0;
|
|
79
|
-
return this.lastIndexOf(searchString, position) === position;
|
|
80
|
-
}});
|
|
81
|
-
}
|
|
82
82
|
//endregion
|
|
83
83
|
(function (factory) {
|
|
84
84
|
if (typeof define === 'function' && define.amd)
|
|
@@ -144,19 +144,19 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
144
144
|
initMetadataForClass(SubList, 'SubList', VOID, AbstractMutableList);
|
|
145
145
|
initMetadataForClass(AbstractMap, 'AbstractMap', VOID, VOID, [KtMap]);
|
|
146
146
|
initMetadataForClass(AbstractMutableMap, 'AbstractMutableMap', VOID, AbstractMap, [AbstractMap, KtMap]);
|
|
147
|
-
initMetadataForClass(AbstractMutableSet, 'AbstractMutableSet', VOID, AbstractMutableCollection, [AbstractMutableCollection,
|
|
147
|
+
initMetadataForClass(AbstractMutableSet, 'AbstractMutableSet', VOID, AbstractMutableCollection, [AbstractMutableCollection, Collection, KtSet]);
|
|
148
148
|
initMetadataForCompanion(Companion_5);
|
|
149
149
|
initMetadataForClass(ArrayList, 'ArrayList', ArrayList_init_$Create$, AbstractMutableList, [AbstractMutableList, Collection, KtList]);
|
|
150
150
|
initMetadataForClass(HashMap, 'HashMap', HashMap_init_$Create$, AbstractMutableMap, [AbstractMutableMap, KtMap]);
|
|
151
|
-
initMetadataForClass(HashMapKeys, 'HashMapKeys', VOID, AbstractMutableSet, [
|
|
151
|
+
initMetadataForClass(HashMapKeys, 'HashMapKeys', VOID, AbstractMutableSet, [Collection, KtSet, AbstractMutableSet]);
|
|
152
152
|
initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [Collection, AbstractMutableCollection]);
|
|
153
|
-
initMetadataForClass(HashMapEntrySetBase, 'HashMapEntrySetBase', VOID, AbstractMutableSet, [
|
|
153
|
+
initMetadataForClass(HashMapEntrySetBase, 'HashMapEntrySetBase', VOID, AbstractMutableSet, [Collection, KtSet, AbstractMutableSet]);
|
|
154
154
|
initMetadataForClass(HashMapEntrySet, 'HashMapEntrySet', VOID, HashMapEntrySetBase);
|
|
155
155
|
initMetadataForClass(HashMapKeysDefault$iterator$1);
|
|
156
156
|
initMetadataForClass(HashMapKeysDefault, 'HashMapKeysDefault', VOID, AbstractMutableSet);
|
|
157
157
|
initMetadataForClass(HashMapValuesDefault$iterator$1);
|
|
158
158
|
initMetadataForClass(HashMapValuesDefault, 'HashMapValuesDefault', VOID, AbstractMutableCollection);
|
|
159
|
-
initMetadataForClass(HashSet, 'HashSet', HashSet_init_$Create$, AbstractMutableSet, [AbstractMutableSet,
|
|
159
|
+
initMetadataForClass(HashSet, 'HashSet', HashSet_init_$Create$, AbstractMutableSet, [AbstractMutableSet, Collection, KtSet]);
|
|
160
160
|
initMetadataForCompanion(Companion_6);
|
|
161
161
|
initMetadataForClass(Itr, 'Itr');
|
|
162
162
|
initMetadataForClass(KeysItr, 'KeysItr', VOID, Itr);
|
|
@@ -203,7 +203,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
203
203
|
initMetadataForObject(EmptyHolder, 'EmptyHolder');
|
|
204
204
|
initMetadataForClass(LinkedHashMap, 'LinkedHashMap', LinkedHashMap_init_$Create$, HashMap, [HashMap, KtMap]);
|
|
205
205
|
initMetadataForObject(EmptyHolder_0, 'EmptyHolder');
|
|
206
|
-
initMetadataForClass(LinkedHashSet, 'LinkedHashSet', LinkedHashSet_init_$Create$, HashSet, [HashSet,
|
|
206
|
+
initMetadataForClass(LinkedHashSet, 'LinkedHashSet', LinkedHashSet_init_$Create$, HashSet, [HashSet, Collection, KtSet]);
|
|
207
207
|
initMetadataForClass(BaseOutput, 'BaseOutput');
|
|
208
208
|
initMetadataForClass(NodeJsOutput, 'NodeJsOutput', VOID, BaseOutput);
|
|
209
209
|
initMetadataForClass(BufferedOutput, 'BufferedOutput', BufferedOutput, BaseOutput);
|