dot-language-support
Advanced tools
Comparing version 2.1.0 to 2.1.1
@@ -45,3 +45,3 @@ "use strict"; | ||
const labelMentions = nodeIdentifierRefs.map(e => { var _a, _b, _c; return (_c = (_b = (_a = e.symbol) === null || _a === void 0 ? void 0 : _a.members) === null || _b === void 0 ? void 0 : _b.get("label")) === null || _c === void 0 ? void 0 : _c.firstMention.parent; }); | ||
for (let i = labelMentions.length; i > 0; i--) { | ||
for (let i = labelMentions.length; i >= 0; i--) { | ||
const s = labelMentions[i]; | ||
@@ -48,0 +48,0 @@ if (s === null || s === void 0 ? void 0 : s.rightId) { |
@@ -40,3 +40,3 @@ import { SyntaxKind } from "../types.js"; | ||
const labelMentions = nodeIdentifierRefs.map(e => e.symbol?.members?.get("label")?.firstMention.parent); | ||
for (let i = labelMentions.length; i > 0; i--) { | ||
for (let i = labelMentions.length; i >= 0; i--) { | ||
const s = labelMentions[i]; | ||
@@ -43,0 +43,0 @@ if (s?.rightId) { |
{ | ||
"name": "dot-language-support", | ||
"version": "2.1.0", | ||
"version": "2.1.1", | ||
"description": "Parser and language service for graphviz (dot) files", | ||
@@ -5,0 +5,0 @@ "author": "Niklas Mollenhauer", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
373952