I like using chaining macros a lot, but it tanks my code coverage. For example, if I did something like this, the three lines in the middle would be marked as not covered. Is this a bug? Should I raise an issue somewhere? This seems like it's a general issue with multi-line expressions (for example, quote blocks cause the same problem).
```julia
Lazy.@> begin
1
+(2)
-(3)
end
```
