@cruglobal/godtools-shared 0.9.2-SNAPSHOT.1339 → 0.9.2-SNAPSHOT.1342
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-ir.js +1 -1
- package/kotlin-kotlin-stdlib-js-ir.js +9 -9
- package/kotlin-kotlin-stdlib-js-ir.js.map +1 -1
- package/kotlin-mpp-godtools-tool-parser-module-state.js.map +1 -1
- package/kotlinx.coroutines-kotlinx-coroutines-core-js-ir.js.map +1 -1
- package/package.json +1 -1
|
@@ -150,7 +150,7 @@
|
|
|
150
150
|
setMetadataFor(Companion_8, 'Companion', objectMeta);
|
|
151
151
|
setMetadataFor(ATNConfig, 'ATNConfig', classMeta);
|
|
152
152
|
setMetadataFor(Companion_9, 'Companion', objectMeta);
|
|
153
|
-
setMetadataFor(Array2DHashSet, 'Array2DHashSet', classMeta, VOID, [
|
|
153
|
+
setMetadataFor(Array2DHashSet, 'Array2DHashSet', classMeta, VOID, [Collection, Set]);
|
|
154
154
|
setMetadataFor(AbstractConfigHashSet, 'AbstractConfigHashSet', classMeta, Array2DHashSet);
|
|
155
155
|
setMetadataFor(ConfigHashSet, 'ConfigHashSet', classMeta, AbstractConfigHashSet);
|
|
156
156
|
setMetadataFor(AbstractEqualityComparator, 'AbstractEqualityComparator', classMeta);
|
|
@@ -37,6 +37,12 @@ if (typeof Math.log2 === 'undefined') {
|
|
|
37
37
|
return Math.log(x) * Math.LOG2E;
|
|
38
38
|
};
|
|
39
39
|
}
|
|
40
|
+
if (typeof String.prototype.startsWith === 'undefined') {
|
|
41
|
+
Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
|
|
42
|
+
position = position || 0;
|
|
43
|
+
return this.lastIndexOf(searchString, position) === position;
|
|
44
|
+
}});
|
|
45
|
+
}
|
|
40
46
|
if (typeof String.prototype.endsWith === 'undefined') {
|
|
41
47
|
Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
|
|
42
48
|
var subjectString = this.toString();
|
|
@@ -48,12 +54,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
48
54
|
return lastIndex !== -1 && lastIndex === position;
|
|
49
55
|
}});
|
|
50
56
|
}
|
|
51
|
-
if (typeof String.prototype.startsWith === 'undefined') {
|
|
52
|
-
Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
|
|
53
|
-
position = position || 0;
|
|
54
|
-
return this.lastIndexOf(searchString, position) === position;
|
|
55
|
-
}});
|
|
56
|
-
}
|
|
57
57
|
if (typeof Math.imul === 'undefined') {
|
|
58
58
|
Math.imul = function imul(a, b) {
|
|
59
59
|
return (a & 4.29490176E9) * (b & 65535) + (a & 65535) * (b | 0) | 0;
|
|
@@ -213,7 +213,7 @@ if (typeof Math.imul === 'undefined') {
|
|
|
213
213
|
setMetadataFor(Entry, 'Entry', interfaceMeta);
|
|
214
214
|
setMetadataFor(MutableEntry, 'MutableEntry', interfaceMeta, VOID, [Entry]);
|
|
215
215
|
setMetadataFor(SimpleEntry, 'SimpleEntry', classMeta, VOID, [MutableEntry]);
|
|
216
|
-
setMetadataFor(AbstractMutableSet, 'AbstractMutableSet', classMeta, AbstractMutableCollection, [AbstractMutableCollection,
|
|
216
|
+
setMetadataFor(AbstractMutableSet, 'AbstractMutableSet', classMeta, AbstractMutableCollection, [AbstractMutableCollection, Collection, Set]);
|
|
217
217
|
setMetadataFor(AbstractEntrySet, 'AbstractEntrySet', classMeta, AbstractMutableSet);
|
|
218
218
|
setMetadataFor(AbstractMutableMap$keys$1, VOID, classMeta, AbstractMutableSet);
|
|
219
219
|
setMetadataFor(AbstractMutableMap$values$1, VOID, classMeta, AbstractMutableCollection);
|
|
@@ -223,7 +223,7 @@ if (typeof Math.imul === 'undefined') {
|
|
|
223
223
|
setMetadataFor(HashCode, 'HashCode', objectMeta);
|
|
224
224
|
setMetadataFor(EntrySet, 'EntrySet', classMeta, AbstractEntrySet);
|
|
225
225
|
setMetadataFor(HashMap, 'HashMap', classMeta, AbstractMutableMap, [AbstractMutableMap, Map]);
|
|
226
|
-
setMetadataFor(HashSet, 'HashSet', classMeta, AbstractMutableSet, [AbstractMutableSet,
|
|
226
|
+
setMetadataFor(HashSet, 'HashSet', classMeta, AbstractMutableSet, [AbstractMutableSet, Collection, Set]);
|
|
227
227
|
setMetadataFor(InternalHashCodeMap$iterator$1, VOID, classMeta);
|
|
228
228
|
function createJsMap() {
|
|
229
229
|
var result = Object.create(null);
|
|
@@ -242,7 +242,7 @@ if (typeof Math.imul === 'undefined') {
|
|
|
242
242
|
setMetadataFor(EntrySet_0, 'EntrySet', classMeta, AbstractEntrySet);
|
|
243
243
|
setMetadataFor(LinkedHashMap, 'LinkedHashMap', classMeta, HashMap, [HashMap, Map]);
|
|
244
244
|
setMetadataFor(Companion_9, 'Companion', objectMeta);
|
|
245
|
-
setMetadataFor(LinkedHashSet, 'LinkedHashSet', classMeta, HashSet, [HashSet,
|
|
245
|
+
setMetadataFor(LinkedHashSet, 'LinkedHashSet', classMeta, HashSet, [HashSet, Collection, Set]);
|
|
246
246
|
setMetadataFor(BaseOutput, 'BaseOutput', classMeta);
|
|
247
247
|
setMetadataFor(NodeJsOutput, 'NodeJsOutput', classMeta, BaseOutput);
|
|
248
248
|
setMetadataFor(BufferedOutput, 'BufferedOutput', classMeta, BaseOutput);
|