Skip to content

Commit d0e2f28

Browse files
committed
fix line numbers
1 parent 5b6910f commit d0e2f28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/analysis.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ method(c::DynamicCall) = which(c.f, argtypes(c))
2222
method_expr(c::DynamicCall) = method_expr(c.f, argtypes(c))
2323

2424
function code(c::DynamicCall; optimize = false)
25-
codeinfo = code_typed(c.f, argtypes(c), optimize = optimize)
25+
codeinfo = code_typed(c.f, argtypes(c), optimize = optimize, debuginfo=:source)
2626
@assert length(codeinfo) == 1
2727
codeinfo = codeinfo[1]
2828
return codeinfo

0 commit comments

Comments
 (0)