Skip to content

Commit aa47ee1

Browse files
committed
Version 1.1.0
1 parent 1fb2a44 commit aa47ee1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "LoweredCodeUtils"
22
uuid = "6f1432cf-f94c-5a45-995e-cdbf5db27b0b"
33
authors = ["Tim Holy <[email protected]>"]
4-
version = "1.0.0"
4+
version = "1.1.0"
55

66
[deps]
77
JuliaInterpreter = "aa1ae85d-cabe-5617-a682-6adf51b2e16a"

docs/src/edges.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ Code:
182182
Here the edges are printed right after each line.
183183

184184
!!! note
185-
Useful output from `print_with_code` requires at least version 1.6.0-DEV.95 of Julia.
185+
"Nice" output from `print_with_code` requires at least version 1.6.0-DEV.95 of Julia.
186186

187187
Suppose we want to evaluate just the lines needed to compute `s`.
188188
We can find out which lines these are with

src/LoweredCodeUtils.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ const SSAValues = Union{Core.Compiler.SSAValue, JuliaInterpreter.SSAValue}
1616
const structheads = VERSION >= v"1.5.0-DEV.702" ? () : (:struct_type, :abstract_type, :primitive_type)
1717
const trackedheads = (:method, structheads...)
1818

19-
export signature, rename_framemethods!, methoddef!, methoddefs!, bodymethod, CodeEdges,
20-
lines_required, lines_required!, selective_eval!, selective_eval_fromstart!
19+
export signature, rename_framemethods!, methoddef!, methoddefs!, bodymethod
20+
export CodeEdges, lines_required, lines_required!, selective_eval!, selective_eval_fromstart!
2121

2222
include("utils.jl")
2323
include("signatures.jl")

0 commit comments

Comments
 (0)