@elyx-code/project-logic-tree 0.0.6205 → 0.0.6206
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 +14 -1
- package/dist/index.umd.cjs +44 -44
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -65048,7 +65048,20 @@ function xJ(i, a, e = !1) {
|
|
|
65048
65048
|
}
|
|
65049
65049
|
function $J(i) {
|
|
65050
65050
|
const a = [];
|
|
65051
|
-
return i.
|
|
65051
|
+
return i.implements.forEach((e) => {
|
|
65052
|
+
if (!e.static) {
|
|
65053
|
+
const t = new at({
|
|
65054
|
+
id: i.id + "--" + e.id + "--" + G.StaticImplementingNonStaticEntity,
|
|
65055
|
+
message: `Entity "${i.name}" with id "${i.id}" is static but implements entity "${e.name}" with id "${e.id}" which is non-static`,
|
|
65056
|
+
issue: null,
|
|
65057
|
+
severity: R.Error,
|
|
65058
|
+
code: G.StaticImplementingNonStaticEntity,
|
|
65059
|
+
entity: i,
|
|
65060
|
+
firstRelationship: e
|
|
65061
|
+
});
|
|
65062
|
+
a.push(t);
|
|
65063
|
+
}
|
|
65064
|
+
}), i.extends.forEach((e) => {
|
|
65052
65065
|
if (!e.static) {
|
|
65053
65066
|
const t = new at({
|
|
65054
65067
|
id: i.id + "--" + e.id + "--" + G.StaticExtendingNonStaticEntity,
|