@@ -100,10 +100,39 @@ function showerror(io::IO, ex, bt; backtrace=true)
100
100
end
101
101
end
102
102
103
+ function stacktrace_path (file:: Union{Nothing, String} , line:: Union{Nothing, Int64} )
104
+ realfile = if ! isnothing (file) && file != " " && ! startswith (String (file), " REPL" )
105
+ fixup_stdlib_path (String (file))
106
+ end
107
+ pathstr = file
108
+ if ! isnothing (pathstr)
109
+ stacktrace_expand_basepaths () && (pathstr = something (find_source_file (file), file))
110
+ stacktrace_contract_userdir () && (pathstr = contractuser (pathstr))
111
+ end
112
+ linestr, llen = if ! isnothing (line) && line > 0
113
+ string (something (pathstr, " " ), ' :' , line), ncodeunits (string (line))
114
+ else
115
+ something (pathstr, " " ), 0
116
+ end
117
+ if ! isnothing (realfile)
118
+ flen = ncodeunits (basename (realfile))
119
+ AnnotatedString (linestr,
120
+ [(1 : ncodeunits (linestr), :link => Filesystem. uripath (realfile)),
121
+ (1 : ncodeunits (linestr)- flen- llen- 1 , :face => :julia_stacktrace_location ),
122
+ (ncodeunits (linestr)- flen- llen: ncodeunits (linestr)- llen- 1 , :face => :julia_stacktrace_filename ),
123
+ (ncodeunits (linestr)- llen: ncodeunits (linestr), :face => :julia_stacktrace_fileline )])
124
+ else
125
+ AnnotatedString (linestr, [(1 : ncodeunits (linestr), :face => :julia_stacktrace_location )])
126
+ end
127
+ end
128
+
129
+ stacktrace_path (location:: LineNumberNode ) =
130
+ stacktrace_path (if ! isnothing (location. file) String (location. file) end , location. line)
131
+
103
132
function showerror (io:: IO , ex:: LoadError , bt; backtrace= true )
104
133
! isa (ex. error, LoadError) && print (io, " LoadError: " )
105
134
showerror (io, ex. error, bt, backtrace= backtrace)
106
- print (io, " \n in expression starting at $ (ex. file) : $( ex. line)" )
135
+ print (io, " \n in expression starting at " , stacktrace_path (ex. file, ex. line))
107
136
end
108
137
showerror (io:: IO , ex:: LoadError ) = showerror (io, ex, [])
109
138
618
647
const update_stackframes_callback = Ref {Function} (identity)
619
648
620
649
const STACKTRACE_MODULECOLORS = Iterators. Stateful (Iterators. cycle ([:magenta , :cyan , :green , :yellow ]))
621
- const STACKTRACE_FIXEDCOLORS = IdDict (Base => :light_black , Core => :light_black )
650
+ const STACKTRACE_FIXEDCOLORS = IdDict (Base => :julia_stacktrace_basemodule , Core => :julia_stacktrace_basemodule )
622
651
623
652
function show_full_backtrace (io:: IO , trace:: Vector ; print_linebreaks:: Bool )
624
653
num_frames = length (trace)
@@ -703,9 +732,9 @@ function show_reduced_backtrace(io::IO, t::Vector)
703
732
cycle_length = repeated_cycle[1 ][2 ]
704
733
repetitions = repeated_cycle[1 ][3 ]
705
734
popfirst! (repeated_cycle)
706
- printstyled (io ,
707
- " --- the above " , cycle_length , " lines are repeated " ,
708
- repetitions, " more time " , repetitions > 1 ? " s " : " " , " --- " , color = :light_black )
735
+ repmsg = string ( " --- the above " , cycle_length, " lines are repeated " ,
736
+ repetitions , " more time " , repetitions > 1 ? " s " : " " , " --- " )
737
+ print (io, AnnotatedString (repmsg, [( 1 : ncodeunits (repmsg), :face => :julia_stacktrace_repetition )]) )
709
738
if i < length (displayed_stackframes)
710
739
println (io)
711
740
stacktrace_linebreaks () && println (io)
@@ -758,41 +787,30 @@ function print_stackframe(io, i, frame::StackFrame, n::Int, ndigits_max, modulec
758
787
digit_align_width = ndigits_max + 2
759
788
760
789
# frame number
761
- print (io, " " , lpad (" [ " * string (i) * " ] " , digit_align_width) )
762
- print (io, " " )
790
+ frameindex = lpad (' [ ' * string (i) * ' ] ' , digit_align_width)
791
+ print (io, ' ' , AnnotatedString (frameindex, [( 1 : ncodeunits (frameindex), :face => :julia_stacktrace_frameindex )]), ' ' )
763
792
764
793
StackTraces. show_spec_linfo (IOContext (io, :backtrace => true ), frame)
765
794
if n > 1
766
- printstyled (io, " (repeats $n times)" ; color= :light_black )
795
+ repmsg = " (repeats $n times)"
796
+ print (io, AnnotatedString (repmsg, [(2 : ncodeunits (repmsg), :face => :julia_stacktrace_repetition )]))
767
797
end
768
798
println (io)
769
799
770
800
# @ Module path / file : line
771
801
print_module_path_file (io, modul, file, line; modulecolor, digit_align_width)
772
802
773
803
# inlined
774
- printstyled (io, inlined ? " [inlined]" : " " , color = :light_black )
804
+ print (io, if inlined AnnotatedString ( " [inlined]" , [( 1 : 9 , :face => :julia_stacktrace_inlined )]) else " " end )
775
805
end
776
806
777
- function print_module_path_file (io, modul, file, line; modulecolor = :light_black , digit_align_width = 0 )
778
- printstyled (io, " " ^ digit_align_width * " @" , color = :light_black )
779
-
780
- # module
807
+ function print_module_path_file (io, modul, file, line; modulecolor = :bright_black , digit_align_width = 0 )
808
+ print (io, ' ' ^ digit_align_width, AnnotatedString (" @" , [(1 : 1 , :face => :julia_stacktrace_location )]))
781
809
if modul != = nothing && modulecolor != = nothing
782
- print (io, " " )
783
- printstyled (io, modul, color = modulecolor)
810
+ mstr = string (modul )
811
+ print (io, " " , AnnotatedString (mstr, [( 1 : ncodeunits (mstr), :face => modulecolor)]) )
784
812
end
785
-
786
- # filepath
787
- file = fixup_stdlib_path (file)
788
- stacktrace_expand_basepaths () && (file = something (find_source_file (file), file))
789
- stacktrace_contract_userdir () && (file = contractuser (file))
790
- print (io, " " )
791
- dir = dirname (file)
792
- ! isempty (dir) && printstyled (io, dir, Filesystem. path_separator, color = :light_black )
793
-
794
- # filename, separator, line
795
- printstyled (io, basename (file), " :" , line; color = :light_black , underline = true )
813
+ print (io, ' ' , stacktrace_path (file, line))
796
814
end
797
815
798
816
function show_backtrace (io:: IO , t:: Vector )
0 commit comments