Skip to content

Commit 168a958

Browse files
committed
Finish v0.16.0
2 parents 3d8caaf + d41b594 commit 168a958

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ val sonarQubeVersion = "9.9.0.65466"
3232
dependencies {
3333
implementation("org.sonarsource.api.plugin", "sonar-plugin-api", "9.14.0.375")
3434

35-
implementation("io.github.1c-syntax", "bsl-language-server", "0.23.1") {
35+
implementation("io.github.1c-syntax", "bsl-language-server", "0.24.0") {
3636
exclude("com.contrastsecurity", "java-sarif")
3737
exclude("io.sentry", "sentry-logback")
3838
exclude("org.springframework.boot", "spring-boot-starter-websocket")

src/main/java/com/github/_1c_syntax/bsl/sonar/BSLHighlighter.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,8 @@ private static Set<Integer> createSdblSeparators() {
419419
SDBLLexer.GREATER,
420420
SDBLLexer.COMMA,
421421
SDBLLexer.BRACE,
422-
SDBLLexer.BRACE_START
422+
SDBLLexer.BRACE_START,
423+
SDBLLexer.NUMBER_SIGH
423424
);
424425
}
425426

src/test/java/com/github/_1c_syntax/bsl/sonar/BSLHighlighterTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,8 @@ private Map<String, TypeOfText> getHighlightingMapSDBL(Vocabulary vocabulary) {
467467
"GREATER",
468468
"COMMA",
469469
"BRACE",
470-
"BRACE_START"
470+
"BRACE_START",
471+
"NUMBER_SIGH"
471472
);
472473

473474
Set<String> noOpTypes = Set.of(

0 commit comments

Comments
 (0)