|
2 | 2 | ;; Joel Holdbrooks <[email protected]>
|
3 | 3 |
|
4 | 4 | (ns vim.syntax-test
|
5 |
| - (:require [vim.test :refer [defpredicates defsyntaxtest]])) |
| 5 | + (:require [vim.test :refer [defpredicates defsyntaxtest def-eq-predicates]])) |
6 | 6 |
|
7 | 7 | ;; defpredicates also register not-equal vars, this is just for clj-kondo
|
8 | 8 | (declare !number !regexp-escape !regexp-posix-char-class !regexp-quantifier)
|
9 | 9 |
|
10 | 10 | (defpredicates number :clojureNumber)
|
11 |
| -(defpredicates kw :clojureKeyword) |
| 11 | +(def-eq-predicates kw [:clojureKeywordNsColon :clojureKeyword]) |
| 12 | +(def-eq-predicates kwWithNs [:clojureKeywordNsColon :clojureKeyword]) |
| 13 | +(def-eq-predicates sym [:clojureSymbolNsColon :clojureSymbol]) |
| 14 | +(def-eq-predicates symWithNs [:clojureSymbolNsColon :clojureSymbol]) |
12 | 15 | (defpredicates character :clojureCharacter)
|
13 | 16 | (defpredicates regexp :clojureRegexp)
|
14 | 17 | (defpredicates regexp-delimiter :clojureRegexpDelimiter)
|
|
115 | 118 | ":a" kw
|
116 | 119 | ":αβγ" kw
|
117 | 120 | "::a" kw
|
118 |
| - ":a/b" kw |
| 121 | + ":a/b" kwWithNs |
119 | 122 | ":a:b" kw
|
120 |
| - ":a:b/:c:b" kw |
121 |
| - ":a/b/c/d" kw |
122 |
| - "::a/b" kw |
| 123 | + ":a:b/:c:b" kwWithNs |
| 124 | + ":a/b/c/d" kwWithNs |
| 125 | + "::a/b" kwWithNs |
123 | 126 | "::" !kw
|
| 127 | + "::" !kwWithNs |
124 | 128 | ":a:" !kw
|
| 129 | + ":a:" !kwWithNs |
125 | 130 | ":a/" !kw
|
126 |
| - ; ":/" !kw ; This is legal, but for simplicity we do not match it |
127 |
| - ":" !kw]]) |
| 131 | + ":a/" !kwWithNs |
| 132 | + ":/" !kw ; This is legal, but for simplicity we do not match it |
| 133 | + ":/" !kwWithNs ; This is legal, but for simplicity we do not match it |
| 134 | + ":" !kw |
| 135 | + ":" !kwWithNs]]) |
| 136 | + |
| 137 | +(defsyntaxtest symbols-test |
| 138 | + ["%s" |
| 139 | + ["1" !sym |
| 140 | + "1" !symWithNs |
| 141 | + "A" sym |
| 142 | + "a" sym |
| 143 | + "αβγ" sym |
| 144 | + "a/b" symWithNs |
| 145 | + "a:b" sym |
| 146 | + "a:b/:c:b" symWithNs |
| 147 | + "a/b/c/d" symWithNs |
| 148 | + "a:" !sym |
| 149 | + "a:" !symWithNs |
| 150 | + "a/" !sym |
| 151 | + "a/" !symWithNs |
| 152 | + "/" sym]]) |
128 | 153 |
|
129 | 154 | (comment (test #'keywords-test))
|
130 | 155 |
|
|
403 | 428 | ;; (?>X) X, as an independent, non-capturing group
|
404 | 429 | "(?>X)" regexp-mod
|
405 | 430 |
|
406 |
| - "(?X)" !regexp-mod |
407 |
| - ]] |
| 431 | + "(?X)" !regexp-mod]] |
408 | 432 | ["#%s"
|
409 | 433 | [;; Backslashes with character classes
|
410 | 434 | "\"[\\\\]\"" (partial = [:clojureRegexpDelimiter :clojureRegexpCharClass :clojureRegexpCharClass :clojureRegexpCharClass :clojureRegexpCharClass :clojureRegexpDelimiter])
|
|
0 commit comments