We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3994395 commit cddc197Copy full SHA for cddc197
test/tokenize.jl
@@ -871,12 +871,17 @@ end
871
raw"^ ↑ ↓ ⇵ ⟰ ⟱ ⤈ ⤉ ⤊ ⤋ ⤒ ⤓ ⥉ ⥌ ⥍ ⥏ ⥑ ⥔ ⥕ ⥘ ⥙ ⥜ ⥝ ⥠ ⥡ ⥣ ⥥ ⥮ ⥯ ↑ ↓"
872
raw"::"
873
raw"."
874
- "⫪ ⫫"
875
- "\u00b7 \u0387"
876
]
877
if VERSION >= v"1.6.0"
878
push!(ops, raw"<-- <-->")
879
end
+ if VERSION >= v"1.7.0"
+ append!(ops, [
880
+ "−"
881
+ "\u00b7 \u0387"
882
+ "⫪ ⫫"
883
+ ])
884
+ end
885
allops = split(join(ops, " "), " ")
886
@test all(s->Base.isoperator(Symbol(s)) == is_operator(first(collect(tokenize(s))).kind), allops)
887
0 commit comments