Open deltakam opened 8 years ago
Gallium.breakpoints
is an array of all breakpoints. so you can for example Gallium.remove(Gallium.breakpoints[3])
to remove one of them, or foreach(Gallium.remove, Gallium.breakpoints)
to remove all of them. also, breakpoint
returns a Gallium.Breakpoint
. so if you bp = breakpoint(...)
then you can later Gallium.remove(bp)
.
i completely agree that this should be documented better! i replied to this in large part so that i can refer to my own post instead of having to figure it out again.
I found there is no description on 'bp' therein. It seems to be like Gallium.Breakpoint instance, but I found no way to obtain that object in README.md.