dot-language-support
Advanced tools
Comparing version 1.1.3 to 1.1.4
@@ -689,2 +689,3 @@ "use strict"; | ||
return kind === types_1.SyntaxKind.HtmlIdentifier | ||
|| kind === types_1.SyntaxKind.NumericIdentifier | ||
|| kind === types_1.SyntaxKind.TextIdentifier | ||
@@ -691,0 +692,0 @@ || kind === types_1.SyntaxKind.QuotedTextIdentifier; |
@@ -5,2 +5,3 @@ "use strict"; | ||
const types_1 = require("./types"); | ||
const util_1 = require("./service/util"); | ||
const textToToken = core_1.createMapFromTemplate({ | ||
@@ -483,3 +484,3 @@ "digraph": types_1.SyntaxKind.DigraphKeyword, | ||
|| 48 <= ch && ch <= 57; | ||
default: throw "Invalid id type: " + idType; | ||
default: return util_1.assertNever(idType); | ||
} | ||
@@ -486,0 +487,0 @@ } |
{ | ||
"name": "dot-language-support", | ||
"version": "1.1.3", | ||
"version": "1.1.4", | ||
"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
155972
4249