Skip to content

Commit d6cd37a

Browse files
authored
InteractiveUtils: add const annotations (#43846)
1 parent 4b036f0 commit d6cd37a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stdlib/InteractiveUtils/src/codeview.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# This file is a part of Julia. License is MIT: https://julialang.org/license
22

33
# highlighting settings
4-
highlighting = Dict{Symbol, Bool}(
4+
const highlighting = Dict{Symbol, Bool}(
55
:warntype => true,
66
:llvm => true,
77
:native => true,
88
)
99

10-
llstyle = Dict{Symbol, Tuple{Bool, Union{Symbol, Int}}}(
10+
const llstyle = Dict{Symbol, Tuple{Bool, Union{Symbol, Int}}}(
1111
:default => (false, :normal), # e.g. comma, equal sign, unknown token
1212
:comment => (false, :light_black),
1313
:label => (false, :light_red),

0 commit comments

Comments
 (0)