@cruglobal/godtools-shared 1.2.0-SNAPSHOT.1773 → 1.2.0-SNAPSHOT.1777
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 +8 -8
- package/kotlin-kotlin-stdlib.js +13 -13
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlin-mpp-godtools-tool-parser-module-parser-base.js +8 -636
- package/kotlin-mpp-godtools-tool-parser-module-parser-base.js.map +1 -1
- package/kotlin-mpp-godtools-tool-parser-module-parser-expressions.js +4 -4
- package/kotlin-mpp-godtools-tool-parser-module-parser-expressions.js.map +1 -1
- package/kotlin-mpp-godtools-tool-parser-module-parser.js +95 -95
- package/kotlin-mpp-godtools-tool-parser-module-parser.js.map +1 -1
- package/kotlin-mpp-godtools-tool-parser-module-renderer-state.js +636 -0
- package/kotlin-mpp-godtools-tool-parser-module-renderer-state.js.map +1 -0
- package/kotlin-mpp-godtools-tool-parser-publishing-npm.d.ts +143 -144
- package/kotlin-mpp-godtools-tool-parser-publishing-npm.js +8 -4
- package/kotlin-mpp-godtools-tool-parser-publishing-npm.js.map +1 -1
- package/kotlinx-atomicfu.js +13 -13
- package/kotlinx-coroutines-core.js +2134 -2134
- package/kotlinx-coroutines-core.js.map +1 -1
- package/package.json +1 -1
|
@@ -66,8 +66,8 @@
|
|
|
66
66
|
var hashCode = kotlin_kotlin.$_$.d6;
|
|
67
67
|
var UnsupportedOperationException_init_$Create$_0 = kotlin_kotlin.$_$.s1;
|
|
68
68
|
var asJsReadonlySetView = kotlin_kotlin.$_$.u2;
|
|
69
|
-
var Collection = kotlin_kotlin.$_$.o2;
|
|
70
69
|
var KtSet = kotlin_kotlin.$_$.v2;
|
|
70
|
+
var Collection = kotlin_kotlin.$_$.o2;
|
|
71
71
|
var IllegalStateException_init_$Create$_0 = kotlin_kotlin.$_$.c1;
|
|
72
72
|
var noWhenBranchMatchedException = kotlin_kotlin.$_$.m9;
|
|
73
73
|
var copyOfRange = kotlin_kotlin.$_$.g3;
|
|
@@ -155,12 +155,12 @@
|
|
|
155
155
|
initMetadataForClass(ATN, 'ATN');
|
|
156
156
|
initMetadataForCompanion(Companion_8);
|
|
157
157
|
initMetadataForClass(ATNConfig, 'ATNConfig');
|
|
158
|
-
initMetadataForClass(Array2DHashSet, 'Array2DHashSet', Array2DHashSet, VOID, [
|
|
158
|
+
initMetadataForClass(Array2DHashSet, 'Array2DHashSet', Array2DHashSet, VOID, [KtSet, Collection]);
|
|
159
159
|
initMetadataForClass(AbstractConfigHashSet, 'AbstractConfigHashSet', VOID, Array2DHashSet);
|
|
160
160
|
initMetadataForClass(ConfigHashSet, 'ConfigHashSet', ConfigHashSet, AbstractConfigHashSet);
|
|
161
161
|
initMetadataForClass(AbstractEqualityComparator, 'AbstractEqualityComparator');
|
|
162
162
|
initMetadataForObject(ConfigEqualityComparator, 'ConfigEqualityComparator', VOID, AbstractEqualityComparator);
|
|
163
|
-
initMetadataForClass(ATNConfigSet, 'ATNConfigSet', ATNConfigSet, VOID, [
|
|
163
|
+
initMetadataForClass(ATNConfigSet, 'ATNConfigSet', ATNConfigSet, VOID, [KtSet, Collection]);
|
|
164
164
|
initMetadataForCompanion(Companion_9);
|
|
165
165
|
initMetadataForClass(ATNDeserializationOptions, 'ATNDeserializationOptions', ATNDeserializationOptions_init_$Create$);
|
|
166
166
|
initMetadataForCompanion(Companion_10);
|
|
@@ -595,7 +595,7 @@
|
|
|
595
595
|
}
|
|
596
596
|
var token = this.g1p_1.o(i);
|
|
597
597
|
var ii = i;
|
|
598
|
-
while (!(token.
|
|
598
|
+
while (!(token.ou() === channel)) {
|
|
599
599
|
if (token.y1p() === -1) {
|
|
600
600
|
return ii;
|
|
601
601
|
}
|
|
@@ -613,7 +613,7 @@
|
|
|
613
613
|
var ii = i;
|
|
614
614
|
while (ii >= 0) {
|
|
615
615
|
var token = this.g1p_1.o(ii);
|
|
616
|
-
if (token.y1p() === -1 || token.
|
|
616
|
+
if (token.y1p() === -1 || token.ou() === channel) {
|
|
617
617
|
return ii;
|
|
618
618
|
}
|
|
619
619
|
ii = ii - 1 | 0;
|
|
@@ -705,7 +705,7 @@
|
|
|
705
705
|
protoOf(CommonToken).z1q = function (_set____db54di) {
|
|
706
706
|
this.u1q_1 = _set____db54di;
|
|
707
707
|
};
|
|
708
|
-
protoOf(CommonToken).
|
|
708
|
+
protoOf(CommonToken).ou = function () {
|
|
709
709
|
return this.u1q_1;
|
|
710
710
|
};
|
|
711
711
|
protoOf(CommonToken).x1p = function (_set____db54di) {
|
|
@@ -761,8 +761,8 @@
|
|
|
761
761
|
};
|
|
762
762
|
protoOf(CommonToken).k1r = function (r) {
|
|
763
763
|
var tmp;
|
|
764
|
-
if (this.
|
|
765
|
-
tmp = ',channel=' + this.
|
|
764
|
+
if (this.ou() > 0) {
|
|
765
|
+
tmp = ',channel=' + this.ou();
|
|
766
766
|
} else {
|
|
767
767
|
tmp = '';
|
|
768
768
|
}
|
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,11 @@ 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
65
|
if (typeof String.prototype.startsWith === 'undefined') {
|
|
66
66
|
Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
|
|
67
67
|
position = position || 0;
|
|
@@ -132,19 +132,19 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
132
132
|
initMetadataForClass(SubList, 'SubList', VOID, AbstractMutableList);
|
|
133
133
|
initMetadataForClass(AbstractMap, 'AbstractMap', VOID, VOID, [KtMap]);
|
|
134
134
|
initMetadataForClass(AbstractMutableMap, 'AbstractMutableMap', VOID, AbstractMap, [AbstractMap, KtMap]);
|
|
135
|
-
initMetadataForClass(AbstractMutableSet, 'AbstractMutableSet', VOID, AbstractMutableCollection, [AbstractMutableCollection,
|
|
135
|
+
initMetadataForClass(AbstractMutableSet, 'AbstractMutableSet', VOID, AbstractMutableCollection, [AbstractMutableCollection, KtSet, Collection]);
|
|
136
136
|
initMetadataForCompanion(Companion_4);
|
|
137
137
|
initMetadataForClass(ArrayList, 'ArrayList', ArrayList_init_$Create$, AbstractMutableList, [AbstractMutableList, KtList, Collection]);
|
|
138
138
|
initMetadataForClass(HashMap, 'HashMap', HashMap_init_$Create$, AbstractMutableMap, [AbstractMutableMap, KtMap]);
|
|
139
|
-
initMetadataForClass(HashMapKeys, 'HashMapKeys', VOID, AbstractMutableSet, [
|
|
139
|
+
initMetadataForClass(HashMapKeys, 'HashMapKeys', VOID, AbstractMutableSet, [KtSet, Collection, AbstractMutableSet]);
|
|
140
140
|
initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [Collection, AbstractMutableCollection]);
|
|
141
|
-
initMetadataForClass(HashMapEntrySetBase, 'HashMapEntrySetBase', VOID, AbstractMutableSet, [
|
|
141
|
+
initMetadataForClass(HashMapEntrySetBase, 'HashMapEntrySetBase', VOID, AbstractMutableSet, [KtSet, Collection, AbstractMutableSet]);
|
|
142
142
|
initMetadataForClass(HashMapEntrySet, 'HashMapEntrySet', VOID, HashMapEntrySetBase);
|
|
143
143
|
initMetadataForClass(HashMapKeysDefault$iterator$1);
|
|
144
144
|
initMetadataForClass(HashMapKeysDefault, 'HashMapKeysDefault', VOID, AbstractMutableSet);
|
|
145
145
|
initMetadataForClass(HashMapValuesDefault$iterator$1);
|
|
146
146
|
initMetadataForClass(HashMapValuesDefault, 'HashMapValuesDefault', VOID, AbstractMutableCollection);
|
|
147
|
-
initMetadataForClass(HashSet, 'HashSet', HashSet_init_$Create$, AbstractMutableSet, [AbstractMutableSet,
|
|
147
|
+
initMetadataForClass(HashSet, 'HashSet', HashSet_init_$Create$, AbstractMutableSet, [AbstractMutableSet, KtSet, Collection]);
|
|
148
148
|
initMetadataForCompanion(Companion_5);
|
|
149
149
|
initMetadataForClass(Itr, 'Itr');
|
|
150
150
|
initMetadataForClass(KeysItr, 'KeysItr', VOID, Itr);
|
|
@@ -191,7 +191,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
191
191
|
initMetadataForObject(EmptyHolder, 'EmptyHolder');
|
|
192
192
|
initMetadataForClass(LinkedHashMap, 'LinkedHashMap', LinkedHashMap_init_$Create$, HashMap, [HashMap, KtMap]);
|
|
193
193
|
initMetadataForObject(EmptyHolder_0, 'EmptyHolder');
|
|
194
|
-
initMetadataForClass(LinkedHashSet, 'LinkedHashSet', LinkedHashSet_init_$Create$, HashSet, [HashSet,
|
|
194
|
+
initMetadataForClass(LinkedHashSet, 'LinkedHashSet', LinkedHashSet_init_$Create$, HashSet, [HashSet, KtSet, Collection]);
|
|
195
195
|
initMetadataForClass(BaseOutput, 'BaseOutput');
|
|
196
196
|
initMetadataForClass(NodeJsOutput, 'NodeJsOutput', VOID, BaseOutput);
|
|
197
197
|
initMetadataForClass(BufferedOutput, 'BufferedOutput', BufferedOutput, BaseOutput);
|
|
@@ -9748,9 +9748,6 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
9748
9748
|
ignoreCase = ignoreCase === VOID ? false : ignoreCase;
|
|
9749
9749
|
return indexOf_2(_this__u8e3s4, char, VOID, ignoreCase) >= 0;
|
|
9750
9750
|
}
|
|
9751
|
-
function get_lastIndex_1(_this__u8e3s4) {
|
|
9752
|
-
return charSequenceLength(_this__u8e3s4) - 1 | 0;
|
|
9753
|
-
}
|
|
9754
9751
|
function regionMatchesImpl(_this__u8e3s4, thisOffset, other, otherOffset, length, ignoreCase) {
|
|
9755
9752
|
if (otherOffset < 0 || thisOffset < 0 || thisOffset > (charSequenceLength(_this__u8e3s4) - length | 0) || otherOffset > (charSequenceLength(other) - length | 0)) {
|
|
9756
9753
|
return false;
|
|
@@ -9766,6 +9763,9 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
9766
9763
|
while (inductionVariable < length);
|
|
9767
9764
|
return true;
|
|
9768
9765
|
}
|
|
9766
|
+
function get_lastIndex_1(_this__u8e3s4) {
|
|
9767
|
+
return charSequenceLength(_this__u8e3s4) - 1 | 0;
|
|
9768
|
+
}
|
|
9769
9769
|
function lines(_this__u8e3s4) {
|
|
9770
9770
|
return toList_1(lineSequence(_this__u8e3s4));
|
|
9771
9771
|
}
|