@@ -29,7 +29,7 @@ julia> @interpret sum(list)
29
29
30
30
You can interrupt execution by setting breakpoints.
31
31
You can set breakpoints via packages that explicitly target debugging,
32
- like [ Juno] ( http ://junolab.org/) , [ Debugger] ( https://github.com/JuliaDebug/Debugger.jl ) , and
32
+ like [ Juno] ( https ://junolab.org/) , [ Debugger] ( https://github.com/JuliaDebug/Debugger.jl ) , and
33
33
[ Rebugger] ( https://github.com/timholy/Rebugger.jl ) .
34
34
But all of these just leverage the core functionality defined in JuliaInterpreter,
35
35
so here we'll illustrate it without using any of these other packages.
@@ -38,8 +38,7 @@ Let's set a conditional breakpoint, to be triggered any time one of the elements
38
38
argument to ` sum ` is bigger than 4:
39
39
40
40
``` jldoctest demo1; filter = r"in Base at .*$"
41
- julia> @breakpoint sum([1, 2]) any(x->x>4, a)
42
- breakpoint(sum(a::AbstractArray) in Base at reducedim.jl:648, line 648)
41
+ julia> bp = @breakpoint sum([1, 2]) any(x->x>4, a);
43
42
```
44
43
45
44
Note that in writing the condition, we used ` a ` , the name of the argument to the relevant
@@ -53,7 +52,7 @@ Now let's see what happens:
53
52
julia> @interpret sum([1,2,3]) # no element bigger than 4, breakpoint should not trigger
54
53
6
55
54
56
- julia> frame, bp = @interpret sum([1,2,5]) # should trigger breakpoint
55
+ julia> frame, bpref = @interpret sum([1,2,5]) # should trigger breakpoint
57
56
(Frame for sum(a::AbstractArray) in Base at reducedim.jl:648
58
57
c 1* 648 1 ─ nothing
59
58
2 648 │ %2 = (Base.#sum#550)(Colon(), #self#, a)
@@ -63,18 +62,16 @@ a = [1, 2, 5], breakpoint(sum(a::AbstractArray) in Base at reducedim.jl:648, lin
63
62
64
63
` frame ` is described in more detail on the next page; for now, suffice it to say
65
64
that the ` c ` in the leftmost column indicates the presence of a conditional breakpoint
66
- upon entry to ` sum ` . ` bp ` is a reference to the breakpoint. You can manipulate these
67
- at the command line:
65
+ upon entry to ` sum ` . ` bpref ` is a reference to the breakpoint of type [ ` BreakpointRef ` ] ( @ref ) .
66
+ The breakpoint ` bp ` we created can be manipulated at the command line
68
67
69
68
``` jldoctest demo1; filter = r"in Base at .*$"
70
69
julia> disable(bp)
71
- false
72
70
73
71
julia> @interpret sum([1,2,5])
74
72
8
75
73
76
74
julia> enable(bp)
77
- true
78
75
79
76
julia> @interpret sum([1,2,5])
80
77
(Frame for sum(a::AbstractArray) in Base at reducedim.jl:648
0 commit comments