Skip to content

Commit 2634aca

Browse files
authored
Additional operators from upstream (#273)
See upstream PRs * JuliaLang/julia#47647 - `⟇` `\veedot` operator * JuliaLang/julia#49623 - `⥺` `\leftarrowsubset` - `⥷` `\leftarrowless`
1 parent d79b9e9 commit 2634aca

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/kinds.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,9 @@ const _kind_names =
255255
""
256256
""
257257
""
258+
""
258259
""
260+
""
259261
""
260262
""
261263
""
@@ -637,6 +639,7 @@ const _kind_names =
637639
""
638640
""
639641
""
642+
""
640643
""
641644
""
642645
""

test/tokenize.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -882,6 +882,9 @@ end
882882
"⫪ ⫫"
883883
])
884884
end
885+
if VERSION >= v"1.10-DEV"
886+
push!(ops, "⥷ ⥺ ⟇")
887+
end
885888
allops = split(join(ops, " "), " ")
886889
@test all(s->Base.isoperator(Symbol(s)) == is_operator(first(collect(tokenize(s))).kind), allops)
887890
end

0 commit comments

Comments
 (0)