Skip to content

Commit dd34b35

Browse files
committed
Remove : lexer check since this is delegated to clojure-lsp/clj-kondo already.
1 parent 3211720 commit dd34b35

File tree

3 files changed

+114
-113
lines changed

3 files changed

+114
-113
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
- Remove `:` lexer check since this is delegated to clojure-lsp/clj-kondo already.
6+
57
## 3.1.0
68

79
- Fix comment form complain about missing paren.

src/gen/com/github/clojure_lsp/intellij/language/parser/_ClojureLexer.java

Lines changed: 112 additions & 112 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/gramar/_ClojureLexer.flex

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,6 @@ SYM_TAIL={SYM_PART}+ (":" {SYM_PART}+)?
103103
}
104104

105105
<SYMBOL1> {
106-
":" { yybegin(YYINITIAL); return BAD_CHARACTER; }
107106
"/" { yybegin(SYMBOL2); return C_SLASH; }
108107
"." { yybegin(YYINITIAL); return C_DOT; }
109108
[^] { yybegin(YYINITIAL); yypushback(yylength()); }

0 commit comments

Comments
 (0)