-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36 from timholy/pull-request/fb2cb863
Improve quality of coverage reports by parsing source files for functions
- Loading branch information
Showing
5 changed files
with
177 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
julia 0.3- | ||
JSON | ||
Requests | ||
Requests | ||
JuliaParser | ||
Compat |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
if VERSION < v"0.4.0-dev" | ||
using Docile | ||
end | ||
# This line should have no code | ||
f2(x) = 2x | ||
if true | ||
f3(x) = 3x | ||
end | ||
f4(x) = 4x; f5(x) = 5x | ||
# This line should have no code | ||
@doc """ | ||
`f6(x)` multiplies `x` by 6 | ||
""" -> | ||
f6(x) = 6x | ||
# This line should have no code | ||
@doc """ | ||
`f7(x)` multiplies `x` by 7 | ||
""" -> | ||
function f7(x) | ||
7x | ||
end | ||
|
||
f8(x) = 8x |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters