@cruglobal/godtools-shared 0.8.3-PR373-SNAPSHOT.1098

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.
Files changed (34) hide show
  1. package/88b0986a7186d029-atomicfu-js-ir.js +181 -0
  2. package/88b0986a7186d029-atomicfu-js-ir.js.map +1 -0
  3. package/Napier-napier-js-ir.js +15 -0
  4. package/Napier-napier-js-ir.js.map +1 -0
  5. package/android-gto-support-gto-support-androidx-annotation.js +15 -0
  6. package/android-gto-support-gto-support-androidx-annotation.js.map +1 -0
  7. package/android-gto-support-gto-support-fluidsonic-locale.js +15 -0
  8. package/android-gto-support-gto-support-fluidsonic-locale.js.map +1 -0
  9. package/antlr-kotlin-antlr-kotlin-runtime-js-ir.js +19 -0
  10. package/antlr-kotlin-antlr-kotlin-runtime-js-ir.js.map +1 -0
  11. package/colormath-root-colormath-js-ir.js +15 -0
  12. package/colormath-root-colormath-js-ir.js.map +1 -0
  13. package/fluid-locale-js-ir.js +15 -0
  14. package/fluid-locale-js-ir.js.map +1 -0
  15. package/kotlin-kotlin-stdlib-js-ir.js +4888 -0
  16. package/kotlin-kotlin-stdlib-js-ir.js.map +1 -0
  17. package/kotlin-kotlinx-atomicfu-runtime-js-ir.js +15 -0
  18. package/kotlin-kotlinx-atomicfu-runtime-js-ir.js.map +1 -0
  19. package/kotlin-mpp-godtools-tool-parser-common.js +15 -0
  20. package/kotlin-mpp-godtools-tool-parser-common.js.map +1 -0
  21. package/kotlin-mpp-godtools-tool-parser-npm.d.ts +26 -0
  22. package/kotlin-mpp-godtools-tool-parser-npm.js +26 -0
  23. package/kotlin-mpp-godtools-tool-parser-npm.js.map +1 -0
  24. package/kotlin-mpp-godtools-tool-parser-parser-expressions.js +15 -0
  25. package/kotlin-mpp-godtools-tool-parser-parser-expressions.js.map +1 -0
  26. package/kotlin-mpp-godtools-tool-parser-parser.js +300 -0
  27. package/kotlin-mpp-godtools-tool-parser-parser.js.map +1 -0
  28. package/kotlin-mpp-godtools-tool-parser-state.js +654 -0
  29. package/kotlin-mpp-godtools-tool-parser-state.js.map +1 -0
  30. package/kotlinx.coroutines-kotlinx-coroutines-core-js-ir.js +8368 -0
  31. package/kotlinx.coroutines-kotlinx-coroutines-core-js-ir.js.map +1 -0
  32. package/package.json +9 -0
  33. package/uuid-js-ir.js +15 -0
  34. package/uuid-js-ir.js.map +1 -0
@@ -0,0 +1,181 @@
1
+ (function (root, factory) {
2
+ if (typeof define === 'function' && define.amd)
3
+ define(['exports', './kotlin-kotlin-stdlib-js-ir.js'], factory);
4
+ else if (typeof exports === 'object')
5
+ factory(module.exports, require('./kotlin-kotlin-stdlib-js-ir.js'));
6
+ else {
7
+ if (typeof this['kotlin-kotlin-stdlib-js-ir'] === 'undefined') {
8
+ throw new Error("Error loading module '88b0986a7186d029-atomicfu-js-ir'. Its dependency 'kotlin-kotlin-stdlib-js-ir' was not found. Please, check whether 'kotlin-kotlin-stdlib-js-ir' is loaded prior to '88b0986a7186d029-atomicfu-js-ir'.");
9
+ }
10
+ root['88b0986a7186d029-atomicfu-js-ir'] = factory(typeof this['88b0986a7186d029-atomicfu-js-ir'] === 'undefined' ? {} : this['88b0986a7186d029-atomicfu-js-ir'], this['kotlin-kotlin-stdlib-js-ir']);
11
+ }
12
+ }(this, function (_, kotlin_kotlin) {
13
+ 'use strict';
14
+ //region block: imports
15
+ var protoOf = kotlin_kotlin.$_$.t2;
16
+ var objectMeta = kotlin_kotlin.$_$.s2;
17
+ var VOID = kotlin_kotlin.$_$.q3;
18
+ var setMetadataFor = kotlin_kotlin.$_$.u2;
19
+ var classMeta = kotlin_kotlin.$_$.i2;
20
+ var toString = kotlin_kotlin.$_$.p3;
21
+ //endregion
22
+ //region block: pre-declaration
23
+ setMetadataFor(atomicfu$TraceBase, 'TraceBase', classMeta);
24
+ setMetadataFor(None, 'None', objectMeta, atomicfu$TraceBase);
25
+ setMetadataFor(AtomicRef, 'AtomicRef', classMeta);
26
+ setMetadataFor(AtomicBoolean, 'AtomicBoolean', classMeta);
27
+ setMetadataFor(AtomicInt, 'AtomicInt', classMeta);
28
+ //endregion
29
+ function None() {
30
+ None_instance = this;
31
+ atomicfu$TraceBase.call(this);
32
+ }
33
+ var None_instance;
34
+ function None_getInstance() {
35
+ if (None_instance == null)
36
+ new None();
37
+ return None_instance;
38
+ }
39
+ function atomicfu$TraceBase() {
40
+ }
41
+ protoOf(atomicfu$TraceBase).atomicfu$Trace$append$1 = function (event) {
42
+ };
43
+ protoOf(atomicfu$TraceBase).atomicfu$Trace$append$2 = function (event1, event2) {
44
+ };
45
+ protoOf(atomicfu$TraceBase).atomicfu$Trace$append$3 = function (event1, event2, event3) {
46
+ };
47
+ protoOf(atomicfu$TraceBase).atomicfu$Trace$append$4 = function (event1, event2, event3, event4) {
48
+ };
49
+ function AtomicRef(value) {
50
+ this.kotlinx$atomicfu$value = value;
51
+ }
52
+ protoOf(AtomicRef).p9 = function (_set____db54di) {
53
+ this.kotlinx$atomicfu$value = _set____db54di;
54
+ };
55
+ protoOf(AtomicRef).q9 = function () {
56
+ return this.kotlinx$atomicfu$value;
57
+ };
58
+ protoOf(AtomicRef).atomicfu$compareAndSet = function (expect, update) {
59
+ if (!(this.kotlinx$atomicfu$value === expect))
60
+ return false;
61
+ this.kotlinx$atomicfu$value = update;
62
+ return true;
63
+ };
64
+ protoOf(AtomicRef).atomicfu$getAndSet = function (value) {
65
+ var oldValue = this.kotlinx$atomicfu$value;
66
+ this.kotlinx$atomicfu$value = value;
67
+ return oldValue;
68
+ };
69
+ protoOf(AtomicRef).toString = function () {
70
+ return toString(this.kotlinx$atomicfu$value);
71
+ };
72
+ function atomic$ref$1(initial) {
73
+ return atomic$ref$(initial, None_getInstance());
74
+ }
75
+ function AtomicBoolean(value) {
76
+ this.kotlinx$atomicfu$value = value;
77
+ }
78
+ protoOf(AtomicBoolean).r9 = function (_set____db54di) {
79
+ this.kotlinx$atomicfu$value = _set____db54di;
80
+ };
81
+ protoOf(AtomicBoolean).q9 = function () {
82
+ return this.kotlinx$atomicfu$value;
83
+ };
84
+ protoOf(AtomicBoolean).atomicfu$compareAndSet = function (expect, update) {
85
+ if (!(this.kotlinx$atomicfu$value === expect))
86
+ return false;
87
+ this.kotlinx$atomicfu$value = update;
88
+ return true;
89
+ };
90
+ protoOf(AtomicBoolean).atomicfu$getAndSet = function (value) {
91
+ var oldValue = this.kotlinx$atomicfu$value;
92
+ this.kotlinx$atomicfu$value = value;
93
+ return oldValue;
94
+ };
95
+ protoOf(AtomicBoolean).toString = function () {
96
+ return this.kotlinx$atomicfu$value.toString();
97
+ };
98
+ function atomic$boolean$1(initial) {
99
+ return atomic$boolean$(initial, None_getInstance());
100
+ }
101
+ function AtomicInt(value) {
102
+ this.kotlinx$atomicfu$value = value;
103
+ }
104
+ protoOf(AtomicInt).s9 = function (_set____db54di) {
105
+ this.kotlinx$atomicfu$value = _set____db54di;
106
+ };
107
+ protoOf(AtomicInt).q9 = function () {
108
+ return this.kotlinx$atomicfu$value;
109
+ };
110
+ protoOf(AtomicInt).atomicfu$compareAndSet = function (expect, update) {
111
+ if (!(this.kotlinx$atomicfu$value === expect))
112
+ return false;
113
+ this.kotlinx$atomicfu$value = update;
114
+ return true;
115
+ };
116
+ protoOf(AtomicInt).atomicfu$getAndSet = function (value) {
117
+ var oldValue = this.kotlinx$atomicfu$value;
118
+ this.kotlinx$atomicfu$value = value;
119
+ return oldValue;
120
+ };
121
+ protoOf(AtomicInt).atomicfu$getAndIncrement = function () {
122
+ var tmp0_this = this;
123
+ var tmp1 = tmp0_this.kotlinx$atomicfu$value;
124
+ tmp0_this.kotlinx$atomicfu$value = tmp1 + 1 | 0;
125
+ return tmp1;
126
+ };
127
+ protoOf(AtomicInt).atomicfu$getAndDecrement = function () {
128
+ var tmp0_this = this;
129
+ var tmp1 = tmp0_this.kotlinx$atomicfu$value;
130
+ tmp0_this.kotlinx$atomicfu$value = tmp1 - 1 | 0;
131
+ return tmp1;
132
+ };
133
+ protoOf(AtomicInt).atomicfu$getAndAdd = function (delta) {
134
+ var oldValue = this.kotlinx$atomicfu$value;
135
+ var tmp0_this = this;
136
+ tmp0_this.kotlinx$atomicfu$value = tmp0_this.kotlinx$atomicfu$value + delta | 0;
137
+ return oldValue;
138
+ };
139
+ protoOf(AtomicInt).atomicfu$addAndGet = function (delta) {
140
+ var tmp0_this = this;
141
+ tmp0_this.kotlinx$atomicfu$value = tmp0_this.kotlinx$atomicfu$value + delta | 0;
142
+ return this.kotlinx$atomicfu$value;
143
+ };
144
+ protoOf(AtomicInt).atomicfu$incrementAndGet = function () {
145
+ var tmp0_this = this;
146
+ tmp0_this.kotlinx$atomicfu$value = tmp0_this.kotlinx$atomicfu$value + 1 | 0;
147
+ return tmp0_this.kotlinx$atomicfu$value;
148
+ };
149
+ protoOf(AtomicInt).atomicfu$decrementAndGet = function () {
150
+ var tmp0_this = this;
151
+ tmp0_this.kotlinx$atomicfu$value = tmp0_this.kotlinx$atomicfu$value - 1 | 0;
152
+ return tmp0_this.kotlinx$atomicfu$value;
153
+ };
154
+ protoOf(AtomicInt).toString = function () {
155
+ return this.kotlinx$atomicfu$value.toString();
156
+ };
157
+ function atomic$int$1(initial) {
158
+ return atomic$int$(initial, None_getInstance());
159
+ }
160
+ function atomic$ref$(initial, trace) {
161
+ trace = trace === VOID ? None_getInstance() : trace;
162
+ return new AtomicRef(initial);
163
+ }
164
+ function atomic$boolean$(initial, trace) {
165
+ trace = trace === VOID ? None_getInstance() : trace;
166
+ return new AtomicBoolean(initial);
167
+ }
168
+ function atomic$int$(initial, trace) {
169
+ trace = trace === VOID ? None_getInstance() : trace;
170
+ return new AtomicInt(initial);
171
+ }
172
+ //region block: exports
173
+ _.$_$ = _.$_$ || {};
174
+ _.$_$.a = atomic$boolean$1;
175
+ _.$_$.b = atomic$ref$1;
176
+ _.$_$.c = atomic$int$1;
177
+ //endregion
178
+ return _;
179
+ }));
180
+
181
+ //# sourceMappingURL=88b0986a7186d029-atomicfu-js-ir.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../../../../../../../../../../../mnt/agent/work/88b0986a7186d029/atomicfu/src/commonMain/kotlin/kotlinx/atomicfu/Trace.common.kt","../../../../../../../../../../../../../mnt/agent/work/88b0986a7186d029/atomicfu/src/jsMain/kotlin/kotlinx/atomicfu/AtomicFU.kt"],"sourcesContent":[null,null],"names":["<init>","append","event","event1","event2","event3","event4","value","<set-value>","<set-?>","<get-value>","compareAndSet","expect","update","getAndSet","oldValue","toString","atomic","initial","getAndIncrement","getAndDecrement","getAndAdd","delta","addAndGet","incrementAndGet","decrementAndGet","trace"],"mappings":"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"}
@@ -0,0 +1,15 @@
1
+ (function (root, factory) {
2
+ if (typeof define === 'function' && define.amd)
3
+ define(['exports'], factory);
4
+ else if (typeof exports === 'object')
5
+ factory(module.exports);
6
+ else
7
+ root['Napier-napier-js-ir'] = factory(typeof this['Napier-napier-js-ir'] === 'undefined' ? {} : this['Napier-napier-js-ir']);
8
+ }(this, function (_) {
9
+ 'use strict';
10
+ //region block: pre-declaration
11
+ //endregion
12
+ return _;
13
+ }));
14
+
15
+ //# sourceMappingURL=Napier-napier-js-ir.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;"}
@@ -0,0 +1,15 @@
1
+ (function (root, factory) {
2
+ if (typeof define === 'function' && define.amd)
3
+ define(['exports'], factory);
4
+ else if (typeof exports === 'object')
5
+ factory(module.exports);
6
+ else
7
+ root['android-gto-support-gto-support-androidx-annotation'] = factory(typeof this['android-gto-support-gto-support-androidx-annotation'] === 'undefined' ? {} : this['android-gto-support-gto-support-androidx-annotation']);
8
+ }(this, function (_) {
9
+ 'use strict';
10
+ //region block: pre-declaration
11
+ //endregion
12
+ return _;
13
+ }));
14
+
15
+ //# sourceMappingURL=android-gto-support-gto-support-androidx-annotation.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;"}
@@ -0,0 +1,15 @@
1
+ (function (root, factory) {
2
+ if (typeof define === 'function' && define.amd)
3
+ define(['exports'], factory);
4
+ else if (typeof exports === 'object')
5
+ factory(module.exports);
6
+ else
7
+ root['android-gto-support-gto-support-fluidsonic-locale'] = factory(typeof this['android-gto-support-gto-support-fluidsonic-locale'] === 'undefined' ? {} : this['android-gto-support-gto-support-fluidsonic-locale']);
8
+ }(this, function (_) {
9
+ 'use strict';
10
+ //region block: pre-declaration
11
+ //endregion
12
+ return _;
13
+ }));
14
+
15
+ //# sourceMappingURL=android-gto-support-gto-support-fluidsonic-locale.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;"}
@@ -0,0 +1,19 @@
1
+ (function (root, factory) {
2
+ if (typeof define === 'function' && define.amd)
3
+ define(['exports'], factory);
4
+ else if (typeof exports === 'object')
5
+ factory(module.exports);
6
+ else
7
+ root['antlr-kotlin-antlr-kotlin-runtime-js-ir'] = factory(typeof this['antlr-kotlin-antlr-kotlin-runtime-js-ir'] === 'undefined' ? {} : this['antlr-kotlin-antlr-kotlin-runtime-js-ir']);
8
+ }(this, function (_) {
9
+ 'use strict';
10
+ //region block: pre-declaration
11
+ //endregion
12
+ var DEFAULT_CHANNEL;
13
+ //region block: init
14
+ DEFAULT_CHANNEL = 0;
15
+ //endregion
16
+ return _;
17
+ }));
18
+
19
+ //# sourceMappingURL=antlr-kotlin-antlr-kotlin-runtime-js-ir.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../../../../../../../../../../../Users/runner/work/antlr-kotlin/antlr-kotlin/antlr-kotlin-runtime/src/commonMain/kotlin/org/antlr/v4/kotlinruntime/tree/pattern/RuleTagToken.kt"],"sourcesContent":[null],"names":[],"mappings":";;;;;;;;;;;;;oBAYsB,C;;;;"}
@@ -0,0 +1,15 @@
1
+ (function (root, factory) {
2
+ if (typeof define === 'function' && define.amd)
3
+ define(['exports'], factory);
4
+ else if (typeof exports === 'object')
5
+ factory(module.exports);
6
+ else
7
+ root['colormath-root-colormath-js-ir'] = factory(typeof this['colormath-root-colormath-js-ir'] === 'undefined' ? {} : this['colormath-root-colormath-js-ir']);
8
+ }(this, function (_) {
9
+ 'use strict';
10
+ //region block: pre-declaration
11
+ //endregion
12
+ return _;
13
+ }));
14
+
15
+ //# sourceMappingURL=colormath-root-colormath-js-ir.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;"}
@@ -0,0 +1,15 @@
1
+ (function (root, factory) {
2
+ if (typeof define === 'function' && define.amd)
3
+ define(['exports'], factory);
4
+ else if (typeof exports === 'object')
5
+ factory(module.exports);
6
+ else
7
+ root['fluid-locale-js-ir'] = factory(typeof this['fluid-locale-js-ir'] === 'undefined' ? {} : this['fluid-locale-js-ir']);
8
+ }(this, function (_) {
9
+ 'use strict';
10
+ //region block: pre-declaration
11
+ //endregion
12
+ return _;
13
+ }));
14
+
15
+ //# sourceMappingURL=fluid-locale-js-ir.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;"}