JuliaCI / Coverage.jl

Take Julia code coverage and memory allocation results, do useful things with them
MIT License
174 stars 68 forks source link

Misses macros that work on functions #275

Closed aminya closed 4 years ago

aminya commented 4 years ago

Coverage misses the first line of this function definition

# Union with Nothing
@transform function findcontent(::Type{UN{T}}, name::String, node::Node, argAmlType::Type{allsubtypes(AbsDocOrNode)}) where {T}
    return findcontent(T, name, node, argAmlType)
end

https://codecov.io/gh/aminya/AcuteML.jl/src/master/src/xmlutils/findcontent.jl#L45

seems to be the same as #269

aminya commented 4 years ago

I created an issue here. https://github.com/JuliaLang/julia/issues/36283