sysml-validate 0.20.2 → 0.20.3
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/out/main.js +4 -1
- package/out/main.js.map +2 -2
- package/package.json +1 -1
- package/resources/sysml.dimension-table.json +1 -1
package/out/main.js
CHANGED
|
@@ -59430,6 +59430,9 @@ function nearestUnits(symbol, limit) {
|
|
|
59430
59430
|
|
|
59431
59431
|
// ../language-server/out/src/messages.js
|
|
59432
59432
|
var DIAGNOSTIC_MESSAGES = {
|
|
59433
|
+
// REQ-006 - a broad diagram anchor cannot prove which typed occurrence owns
|
|
59434
|
+
// a connection whose projected ports resolve to their shared definition.
|
|
59435
|
+
EDIT_RELATION_OWNER_AMBIGUOUS_PROJECTED_USAGE: "The relation owner is ambiguous between a type definition and a projected usage. Select the concrete occurrence or explicitly synchronize the definition before creating the connection.",
|
|
59433
59436
|
// REQ-317 — expression paths diagnose the exact missing feature segment.
|
|
59434
59437
|
RES001_FEATURE_PATH_SEGMENT: (segment, owner) => `Feature path segment '${segment}' does not exist on '${owner}'.`,
|
|
59435
59438
|
LEX001_UNTERMINATED_STRING: `Unterminated string literal - missing closing '"'.`,
|
|
@@ -72235,7 +72238,7 @@ async function runValidation(command) {
|
|
|
72235
72238
|
}
|
|
72236
72239
|
|
|
72237
72240
|
// src/main.ts
|
|
72238
|
-
var VERSION2 = true ? "0.20.
|
|
72241
|
+
var VERSION2 = true ? "0.20.3" : "dev";
|
|
72239
72242
|
async function main(argv) {
|
|
72240
72243
|
const command = parseArgs(argv);
|
|
72241
72244
|
if (command.kind === "help") {
|