Skip to content

Commit

Permalink
Additional operators from upstream (#273)
Browse files Browse the repository at this point in the history
See upstream PRs

* JuliaLang/julia#47647
    - `⟇` `\veedot` operator
* JuliaLang/julia#49623
    - `⥺` `\leftarrowsubset`
    - `⥷` `\leftarrowless`
  • Loading branch information
c42f authored May 11, 2023
1 parent d79b9e9 commit 2634aca
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/kinds.jl
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,9 @@ const _kind_names =
""
""
""
""
""
""
""
""
""
Expand Down Expand Up @@ -637,6 +639,7 @@ const _kind_names =
""
""
""
""
""
""
""
Expand Down
3 changes: 3 additions & 0 deletions test/tokenize.jl
Original file line number Diff line number Diff line change
Expand Up @@ -882,6 +882,9 @@ end
"⫪ ⫫"
])
end
if VERSION >= v"1.10-DEV"
push!(ops, "⥷ ⥺ ⟇")
end
allops = split(join(ops, " "), " ")
@test all(s->Base.isoperator(Symbol(s)) == is_operator(first(collect(tokenize(s))).kind), allops)
end
Expand Down

0 comments on commit 2634aca

Please sign in to comment.