@elyx-code/project-logic-tree 0.0.6275 → 0.0.6276
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/dist/index.js +21 -21
- package/dist/index.umd.cjs +19 -19
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -32176,7 +32176,7 @@ Please consider than any updates might affect the overlap with the signature of
|
|
|
32176
32176
|
captureVersion() {
|
|
32177
32177
|
var t;
|
|
32178
32178
|
const e = ((t = this.knownVersions) == null ? void 0 : t.get(this.version)) || new Re(this, this.project);
|
|
32179
|
-
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.inputs = this.inputs, e.calls = this.calls, e.implements = this.implements, e.extends = this.extends, e.detachedChildren = this.detachedChildren, e.parent = this.parent, this;
|
|
32179
|
+
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.inputs = [...this.inputs], e.calls = [...this.calls], e.implements = this.implements, e.extends = this.extends, e.detachedChildren = [...this.detachedChildren], e.parent = this.parent, this;
|
|
32180
32180
|
}
|
|
32181
32181
|
// Traverses upstream entities and captures their versions as well
|
|
32182
32182
|
recursiveCaptureUpstreamVersions(e) {
|
|
@@ -33521,7 +33521,7 @@ Alternatively you can update the entity with 'update' action. Or replace it by f
|
|
|
33521
33521
|
captureVersion() {
|
|
33522
33522
|
var t;
|
|
33523
33523
|
const e = ((t = this.knownVersions) == null ? void 0 : t.get(this.version)) || new De(this, this.project);
|
|
33524
|
-
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.entity = this.entity, e.andChildrenGroup = this.andChildrenGroup, e.orChildrenGroup = this.orChildrenGroup, e.parent = this.parent, this;
|
|
33524
|
+
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.entity = this.entity, e.andChildrenGroup = this.andChildrenGroup ? [...this.andChildrenGroup] : this.andChildrenGroup, e.orChildrenGroup = this.orChildrenGroup ? [...this.orChildrenGroup] : this.orChildrenGroup, e.parent = this.parent, this;
|
|
33525
33525
|
}
|
|
33526
33526
|
// Traverses upstream entities and captures their versions as well
|
|
33527
33527
|
recursiveCaptureUpstreamVersions(e) {
|
|
@@ -34789,7 +34789,7 @@ You shouldn't have to manually update a 'parent' property. The equivalent result
|
|
|
34789
34789
|
captureVersion() {
|
|
34790
34790
|
var t;
|
|
34791
34791
|
const e = ((t = this.knownVersions) == null ? void 0 : t.get(this.version)) || new Oe(this, this.project);
|
|
34792
|
-
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.inputs = this.inputs, e.outputs = this.outputs, e.error = this.error, e.process = this.process, e.successCalls = this.successCalls, e.errorCalls = this.errorCalls, e.calledBySuccess = this.calledBySuccess, e.calledByError = this.calledByError, e.calledByEntry = this.calledByEntry, e.declaration = this.declaration, e.parent = this.parent, this;
|
|
34792
|
+
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.inputs = [...this.inputs], e.outputs = [...this.outputs], e.error = this.error, e.process = this.process, e.successCalls = [...this.successCalls], e.errorCalls = [...this.errorCalls], e.calledBySuccess = [...this.calledBySuccess], e.calledByError = [...this.calledByError], e.calledByEntry = [...this.calledByEntry], e.declaration = this.declaration, e.parent = this.parent, this;
|
|
34793
34793
|
}
|
|
34794
34794
|
// Traverses upstream entities and captures their versions as well
|
|
34795
34795
|
recursiveCaptureUpstreamVersions(e) {
|
|
@@ -37517,7 +37517,7 @@ Specifically for continue statements the parent needs to always be the 'loop' en
|
|
|
37517
37517
|
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(
|
|
37518
37518
|
this.version,
|
|
37519
37519
|
e
|
|
37520
|
-
) : /* @__PURE__ */ new Map([[this.version, e]]), e.outputs = this.outputs, e.throws = this.throws, e.calledBySuccess = this.calledBySuccess, e.calledByError = this.calledByError, e.calledByEntry = this.calledByEntry, e.parent = this.parent, this;
|
|
37520
|
+
) : /* @__PURE__ */ new Map([[this.version, e]]), e.outputs = [...this.outputs], e.throws = this.throws, e.calledBySuccess = [...this.calledBySuccess], e.calledByError = [...this.calledByError], e.calledByEntry = [...this.calledByEntry], e.parent = this.parent, this;
|
|
37521
37521
|
}
|
|
37522
37522
|
// Traverses upstream entities and captures their versions as well
|
|
37523
37523
|
recursiveCaptureUpstreamVersions(e) {
|
|
@@ -38489,7 +38489,7 @@ Specifically for return statements the parent needs to always be the 'function-d
|
|
|
38489
38489
|
captureVersion() {
|
|
38490
38490
|
var t;
|
|
38491
38491
|
const e = ((t = this.knownVersions) == null ? void 0 : t.get(this.version)) || new Xe(this, this.project);
|
|
38492
|
-
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.outputs = this.outputs, e.throws = this.throws, e.calledBySuccess = this.calledBySuccess, e.calledByError = this.calledByError, e.calledByEntry = this.calledByEntry, e.parent = this.parent, this;
|
|
38492
|
+
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.outputs = [...this.outputs], e.throws = this.throws, e.calledBySuccess = [...this.calledBySuccess], e.calledByError = [...this.calledByError], e.calledByEntry = [...this.calledByEntry], e.parent = this.parent, this;
|
|
38493
38493
|
}
|
|
38494
38494
|
// Traverses upstream entities and captures their versions as well
|
|
38495
38495
|
recursiveCaptureUpstreamVersions(e) {
|
|
@@ -39592,7 +39592,7 @@ You can attach new logic to the existing 'global-event' but creating a new calla
|
|
|
39592
39592
|
captureVersion() {
|
|
39593
39593
|
var t;
|
|
39594
39594
|
const e = ((t = this.knownVersions) == null ? void 0 : t.get(this.version)) || new Pe(this, this.project);
|
|
39595
|
-
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.inputs = this.inputs, e.calls = this.calls, e.implements = this.implements, e.detachedChildren = this.detachedChildren, e.parent = this.parent, this;
|
|
39595
|
+
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.inputs = [...this.inputs], e.calls = [...this.calls], e.implements = this.implements, e.detachedChildren = [...this.detachedChildren], e.parent = this.parent, this;
|
|
39596
39596
|
}
|
|
39597
39597
|
// Traverses upstream entities and captures their versions as well
|
|
39598
39598
|
recursiveCaptureUpstreamVersions(e) {
|
|
@@ -40662,7 +40662,7 @@ This is likely an incorrect strategy, either the '${this.type}' entity doesn't n
|
|
|
40662
40662
|
captureVersion() {
|
|
40663
40663
|
var t;
|
|
40664
40664
|
const e = ((t = this.knownVersions) == null ? void 0 : t.get(this.version)) || new Ve(this, this.project);
|
|
40665
|
-
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.inputs = this.inputs, e.outputs = this.outputs, e.error = this.error, e.parent = this.parent, this;
|
|
40665
|
+
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.inputs = [...this.inputs], e.outputs = [...this.outputs], e.error = this.error, e.parent = this.parent, this;
|
|
40666
40666
|
}
|
|
40667
40667
|
// Traverses upstream entities and captures their versions as well
|
|
40668
40668
|
recursiveCaptureUpstreamVersions(e) {
|
|
@@ -42192,7 +42192,7 @@ You shouldn't have to manually update a 'parent' property. The equivalent result
|
|
|
42192
42192
|
captureVersion() {
|
|
42193
42193
|
var t;
|
|
42194
42194
|
const e = ((t = this.knownVersions) == null ? void 0 : t.get(this.version)) || new le(this, this.project);
|
|
42195
|
-
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.inputs = this.inputs, e.outputs = this.outputs, e.error = this.error, e.successCalls = this.successCalls, e.errorCalls = this.errorCalls, e.declaration = this.declaration, e.outputsDeclarations = this.outputsDeclarations, e.body = this.body, e.calledByEntry = this.calledByEntry, e.calledBySuccess = this.calledBySuccess, e.calledByError = this.calledByError, e.process = this.process, e.parent = this.parent, this;
|
|
42195
|
+
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.inputs = [...this.inputs], e.outputs = [...this.outputs], e.error = this.error, e.successCalls = [...this.successCalls], e.errorCalls = [...this.errorCalls], e.declaration = this.declaration, e.outputsDeclarations = [...this.outputsDeclarations], e.body = this.body, e.calledByEntry = [...this.calledByEntry], e.calledBySuccess = [...this.calledBySuccess], e.calledByError = [...this.calledByError], e.process = this.process, e.parent = this.parent, this;
|
|
42196
42196
|
}
|
|
42197
42197
|
// Traverses upstream entities and captures their versions as well
|
|
42198
42198
|
recursiveCaptureUpstreamVersions(e) {
|
|
@@ -45025,7 +45025,7 @@ If an entity is called by another, they must be in the same scope, which means t
|
|
|
45025
45025
|
captureVersion() {
|
|
45026
45026
|
var t;
|
|
45027
45027
|
const e = ((t = this.knownVersions) == null ? void 0 : t.get(this.version)) || new Ge(this, this.project);
|
|
45028
|
-
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.inputs = this.inputs, e.declaration = this.declaration, e.successCalls = this.successCalls, e.errorCalls = this.errorCalls, e.calledBySuccess = this.calledBySuccess, e.calledByError = this.calledByError, e.calledByEntry = this.calledByEntry, e.parent = this.parent, this;
|
|
45028
|
+
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.inputs = [...this.inputs], e.declaration = this.declaration, e.successCalls = [...this.successCalls], e.errorCalls = [...this.errorCalls], e.calledBySuccess = [...this.calledBySuccess], e.calledByError = [...this.calledByError], e.calledByEntry = [...this.calledByEntry], e.parent = this.parent, this;
|
|
45029
45029
|
}
|
|
45030
45030
|
// Traverses upstream entities and captures their versions as well
|
|
45031
45031
|
recursiveCaptureUpstreamVersions(e) {
|
|
@@ -46371,7 +46371,7 @@ You shouldn't have to manually update a 'parent' property. The equivalent result
|
|
|
46371
46371
|
captureVersion() {
|
|
46372
46372
|
var t;
|
|
46373
46373
|
const e = ((t = this.knownVersions) == null ? void 0 : t.get(this.version)) || new Ce(this, this.project);
|
|
46374
|
-
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.inputs = this.inputs, e.outputs = this.outputs, e.internalCalls = this.internalCalls, e.successCalls = this.successCalls, e.errorCalls = this.errorCalls, e.writesValues = this.writesValues, e.readsValue = this.readsValue, e.defaultValue = this.defaultValue, e.declaration = this.declaration, e.calledBySuccess = this.calledBySuccess, e.calledByError = this.calledByError, e.calledByEntry = this.calledByEntry, e.parent = this.parent, this;
|
|
46374
|
+
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.inputs = [...this.inputs], e.outputs = [...this.outputs], e.internalCalls = [...this.internalCalls], e.successCalls = [...this.successCalls], e.errorCalls = [...this.errorCalls], e.writesValues = [...this.writesValues], e.readsValue = this.readsValue, e.defaultValue = this.defaultValue, e.declaration = this.declaration, e.calledBySuccess = [...this.calledBySuccess], e.calledByError = [...this.calledByError], e.calledByEntry = [...this.calledByEntry], e.parent = this.parent, this;
|
|
46375
46375
|
}
|
|
46376
46376
|
// Traverses upstream entities and captures their versions as well
|
|
46377
46377
|
recursiveCaptureUpstreamVersions(e) {
|
|
@@ -48144,7 +48144,7 @@ You shouldn't have to manually update a 'parent' property. The equivalent result
|
|
|
48144
48144
|
captureVersion() {
|
|
48145
48145
|
var t;
|
|
48146
48146
|
const e = ((t = this.knownVersions) == null ? void 0 : t.get(this.version)) || new _e(this, this.project);
|
|
48147
|
-
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.inputs = this.inputs, e.outputs = this.outputs, e.internalCalls = this.internalCalls, e.successCalls = this.successCalls, e.errorCalls = this.errorCalls, e.writesValues = this.writesValues, e.readsValue = this.readsValue, e.defaultValue = this.defaultValue, e.dataType = this.dataType, e.calledBySuccess = this.calledBySuccess, e.calledByError = this.calledByError, e.calledByEntry = this.calledByEntry, e.parent = this.parent, this;
|
|
48147
|
+
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.inputs = [...this.inputs], e.outputs = [...this.outputs], e.internalCalls = [...this.internalCalls], e.successCalls = [...this.successCalls], e.errorCalls = [...this.errorCalls], e.writesValues = [...this.writesValues], e.readsValue = this.readsValue, e.defaultValue = this.defaultValue, e.dataType = this.dataType, e.calledBySuccess = [...this.calledBySuccess], e.calledByError = [...this.calledByError], e.calledByEntry = [...this.calledByEntry], e.parent = this.parent, this;
|
|
48148
48148
|
}
|
|
48149
48149
|
// Traverses upstream entities and captures their versions as well
|
|
48150
48150
|
recursiveCaptureUpstreamVersions(e) {
|
|
@@ -50175,7 +50175,7 @@ You shouldn't have to manually update a 'parent' property. The equivalent result
|
|
|
50175
50175
|
captureVersion() {
|
|
50176
50176
|
var t;
|
|
50177
50177
|
const e = ((t = this.knownVersions) == null ? void 0 : t.get(this.version)) || new qe(this, this.project);
|
|
50178
|
-
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.inputs = this.inputs, e.outputs = this.outputs, e.error = this.error, e.inputsDeclarations = this.inputsDeclarations, e.outputsDeclarations = this.outputsDeclarations, e.successCalls = this.successCalls, e.errorCalls = this.errorCalls, e.calledByEntry = this.calledByEntry, e.calledBySuccess = this.calledBySuccess, e.calledByError = this.calledByError, e.parent = this.parent, this;
|
|
50178
|
+
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.inputs = [...this.inputs], e.outputs = [...this.outputs], e.error = this.error, e.inputsDeclarations = [...this.inputsDeclarations], e.outputsDeclarations = [...this.outputsDeclarations], e.successCalls = [...this.successCalls], e.errorCalls = [...this.errorCalls], e.calledByEntry = [...this.calledByEntry], e.calledBySuccess = [...this.calledBySuccess], e.calledByError = [...this.calledByError], e.parent = this.parent, this;
|
|
50179
50179
|
}
|
|
50180
50180
|
// Traverses upstream entities and captures their versions as well
|
|
50181
50181
|
recursiveCaptureUpstreamVersions(e) {
|
|
@@ -51532,7 +51532,7 @@ const qW = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
51532
51532
|
captureVersion() {
|
|
51533
51533
|
var t;
|
|
51534
51534
|
const e = ((t = this.knownVersions) == null ? void 0 : t.get(this.version)) || new Fe(this, this.project);
|
|
51535
|
-
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.functions = this.functions, e.events = this.events, e.parent = this.parent, this;
|
|
51535
|
+
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.functions = [...this.functions], e.events = [...this.events], e.parent = this.parent, this;
|
|
51536
51536
|
}
|
|
51537
51537
|
// Traverses upstream entities and captures their versions as well
|
|
51538
51538
|
recursiveCaptureUpstreamVersions(e) {
|
|
@@ -52601,7 +52601,7 @@ This is likely an incorrect strategy, either the '${this.type}' entity doesn't n
|
|
|
52601
52601
|
captureVersion() {
|
|
52602
52602
|
var t;
|
|
52603
52603
|
const e = ((t = this.knownVersions) == null ? void 0 : t.get(this.version)) || new Be(this, this.project);
|
|
52604
|
-
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.inputs = this.inputs, e.outputs = this.outputs, e.error = this.error, e.process = this.process, e.successCalls = this.successCalls, e.errorCalls = this.errorCalls, e.calledBySuccess = this.calledBySuccess, e.calledByError = this.calledByError, e.calledByEntry = this.calledByEntry, e.declaration = this.declaration, e.parent = this.parent, this;
|
|
52604
|
+
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.inputs = [...this.inputs], e.outputs = [...this.outputs], e.error = this.error, e.process = this.process, e.successCalls = [...this.successCalls], e.errorCalls = [...this.errorCalls], e.calledBySuccess = [...this.calledBySuccess], e.calledByError = [...this.calledByError], e.calledByEntry = [...this.calledByEntry], e.declaration = this.declaration, e.parent = this.parent, this;
|
|
52605
52605
|
}
|
|
52606
52606
|
// Traverses upstream entities and captures their versions as well
|
|
52607
52607
|
recursiveCaptureUpstreamVersions(e) {
|
|
@@ -55336,7 +55336,7 @@ This is likely an incorrect strategy, either the '${this.type}' entity doesn't n
|
|
|
55336
55336
|
captureVersion() {
|
|
55337
55337
|
var t;
|
|
55338
55338
|
const e = ((t = this.knownVersions) == null ? void 0 : t.get(this.version)) || new Ne(this, this.project);
|
|
55339
|
-
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.declaration = this.declaration, e.defaultValue = this.defaultValue, e.writesValues = this.writesValues, e.dataType = this.dataType, e.parent = this.parent, this;
|
|
55339
|
+
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.declaration = this.declaration, e.defaultValue = this.defaultValue, e.writesValues = [...this.writesValues], e.dataType = this.dataType, e.parent = this.parent, this;
|
|
55340
55340
|
}
|
|
55341
55341
|
// Traverses upstream entities and captures their versions as well
|
|
55342
55342
|
recursiveCaptureUpstreamVersions(e) {
|
|
@@ -56381,7 +56381,7 @@ This is likely an incorrect strategy, either the '${this.type}' entity doesn't n
|
|
|
56381
56381
|
captureVersion() {
|
|
56382
56382
|
var t;
|
|
56383
56383
|
const e = ((t = this.knownVersions) == null ? void 0 : t.get(this.version)) || new xe(this, this.project);
|
|
56384
|
-
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.implements = this.implements, e.defaultValue = this.defaultValue, e.dataType = this.dataType, e.writesValues = this.writesValues, e.parent = this.parent, this;
|
|
56384
|
+
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.implements = this.implements, e.defaultValue = this.defaultValue, e.dataType = this.dataType, e.writesValues = [...this.writesValues], e.parent = this.parent, this;
|
|
56385
56385
|
}
|
|
56386
56386
|
// Traverses upstream entities and captures their versions as well
|
|
56387
56387
|
recursiveCaptureUpstreamVersions(e) {
|
|
@@ -57473,7 +57473,7 @@ This is likely an incorrect strategy, either the '${this.type}' entity doesn't n
|
|
|
57473
57473
|
captureVersion() {
|
|
57474
57474
|
var t;
|
|
57475
57475
|
const e = ((t = this.knownVersions) == null ? void 0 : t.get(this.version)) || new Ue(this, this.project);
|
|
57476
|
-
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.valueAsTypeSingle = this.valueAsTypeSingle, e.parent = this.parent, this;
|
|
57476
|
+
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.valueAsTypeSingle = this.valueAsTypeSingle, e.valueAsTypeList = this.valueAsTypeList ? [...this.valueAsTypeList] : this.valueAsTypeList, e.parent = this.parent, this;
|
|
57477
57477
|
}
|
|
57478
57478
|
// Traverses upstream entities and captures their versions as well
|
|
57479
57479
|
recursiveCaptureUpstreamVersions(e) {
|
|
@@ -58459,7 +58459,7 @@ Specifically for break statements the parent needs to always be the 'loop' entit
|
|
|
58459
58459
|
captureVersion() {
|
|
58460
58460
|
var t;
|
|
58461
58461
|
const e = ((t = this.knownVersions) == null ? void 0 : t.get(this.version)) || new ge(this, this.project);
|
|
58462
|
-
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.outputs = this.outputs, e.throws = this.throws, e.calledBySuccess = this.calledBySuccess, e.calledByError = this.calledByError, e.calledByEntry = this.calledByEntry, e.parent = this.parent, this;
|
|
58462
|
+
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.outputs = [...this.outputs], e.throws = this.throws, e.calledBySuccess = [...this.calledBySuccess], e.calledByError = [...this.calledByError], e.calledByEntry = [...this.calledByEntry], e.parent = this.parent, this;
|
|
58463
58463
|
}
|
|
58464
58464
|
// Traverses upstream entities and captures their versions as well
|
|
58465
58465
|
recursiveCaptureUpstreamVersions(e) {
|
|
@@ -62913,7 +62913,7 @@ You shouldn't have to manually update a 'parent' property. The equivalent result
|
|
|
62913
62913
|
captureVersion() {
|
|
62914
62914
|
var t;
|
|
62915
62915
|
const e = ((t = this.knownVersions) == null ? void 0 : t.get(this.version)) || new ke(this, this.project);
|
|
62916
|
-
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.inputs = this.inputs, e.outputs = this.outputs, e.error = this.error, e.successCalls = this.successCalls, e.errorCalls = this.errorCalls, e.process = this.process, e.declaration = this.declaration, e.calledBySuccess = this.calledBySuccess, e.calledByError = this.calledByError, e.calledByEntry = this.calledByEntry, e.parent = this.parent, this;
|
|
62916
|
+
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.inputs = [...this.inputs], e.outputs = [...this.outputs], e.error = this.error, e.successCalls = [...this.successCalls], e.errorCalls = [...this.errorCalls], e.process = this.process, e.declaration = this.declaration, e.calledBySuccess = [...this.calledBySuccess], e.calledByError = [...this.calledByError], e.calledByEntry = [...this.calledByEntry], e.parent = this.parent, this;
|
|
62917
62917
|
}
|
|
62918
62918
|
// Traverses upstream entities and captures their versions as well
|
|
62919
62919
|
recursiveCaptureUpstreamVersions(e) {
|
|
@@ -68398,7 +68398,7 @@ Alternatively you can update the parent data-type entity with 'update' action to
|
|
|
68398
68398
|
captureVersion() {
|
|
68399
68399
|
var t;
|
|
68400
68400
|
const e = ((t = this.knownVersions) == null ? void 0 : t.get(this.version)) || new Le(this, this.project);
|
|
68401
|
-
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.properties = this.properties, e.methods = this.methods, e.abstractMethods = this.abstractMethods, e.extends = this.extends, e.implements = this.implements, e.parent = this.parent, this;
|
|
68401
|
+
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.properties = [...this.properties], e.methods = [...this.methods], e.abstractMethods = [...this.abstractMethods], e.extends = [...this.extends], e.implements = [...this.implements], e.parent = this.parent, this;
|
|
68402
68402
|
}
|
|
68403
68403
|
// Traverses upstream entities and captures their versions as well
|
|
68404
68404
|
recursiveCaptureUpstreamVersions(e) {
|
|
@@ -71048,7 +71048,7 @@ const ie = class ie extends Gv {
|
|
|
71048
71048
|
captureVersion() {
|
|
71049
71049
|
var t;
|
|
71050
71050
|
const e = ((t = this.knownVersions) == null ? void 0 : t.get(this.version)) || new ie(this);
|
|
71051
|
-
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.entities = this.entities, e.projects = this.projects, e.functions = this.functions, e.events = this.events, e.variableDeclarations = this.variableDeclarations, e.variableInstances = this.variableInstances, e.conditions = this.conditions, e.operations = this.operations, e.functionCalls = this.functionCalls, e.loops = this.loops, e.searches = this.searches, this;
|
|
71051
|
+
return e.metaSync(this.toMeta(), null), this.knownVersions = this.knownVersions ? this.knownVersions.set(this.version, e) : /* @__PURE__ */ new Map([[this.version, e]]), e.entities = [...this.entities], e.projects = [...this.projects], e.functions = [...this.functions], e.events = [...this.events], e.variableDeclarations = [...this.variableDeclarations], e.variableInstances = [...this.variableInstances], e.conditions = [...this.conditions], e.operations = [...this.operations], e.functionCalls = [...this.functionCalls], e.loops = [...this.loops], e.searches = [...this.searches], this;
|
|
71052
71052
|
}
|
|
71053
71053
|
// Traverses upstream entities and captures their versions as well
|
|
71054
71054
|
recursiveCaptureUpstreamVersions(e) {
|