WIP add a test for @interpret^2
Closes #228
Actually:
julia> JuliaInterpreter.disable_recycle[] = true
true
julia> f() = @interpret sin(2.0)
f (generic function with 1 method)
julia> f()
0.9092974268256817
julia> @interpret f()
1.0
Codecov Report
Merging #252 into master will increase coverage by
0.05%. The diff coverage is100%.
@@ Coverage Diff @@
## master #252 +/- ##
==========================================
+ Coverage 87.15% 87.21% +0.05%
==========================================
Files 14 14
Lines 1985 1986 +1
==========================================
+ Hits 1730 1732 +2
+ Misses 255 254 -1
| Impacted Files | Coverage Δ | |
|---|---|---|
| src/construct.jl | 92.21% <100%> (+0.03%) |
:arrow_up: |
| src/interpret.jl | 86.68% <0%> (+0.28%) |
:arrow_up: |
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact),ø = not affected,? = missing dataPowered by Codecov. Last update 7deef44...5a22f34. Read the comment docs.
Codecov Report
Merging #252 into master will increase coverage by
0.05%. The diff coverage is100%.
@@ Coverage Diff @@
## master #252 +/- ##
==========================================
+ Coverage 87.15% 87.21% +0.05%
==========================================
Files 14 14
Lines 1985 1986 +1
==========================================
+ Hits 1730 1732 +2
+ Misses 255 254 -1
| Impacted Files | Coverage Δ | |
|---|---|---|
| src/construct.jl | 92.21% <100%> (+0.03%) |
:arrow_up: |
| src/interpret.jl | 86.68% <0%> (+0.28%) |
:arrow_up: |
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact),ø = not affected,? = missing dataPowered by Codecov. Last update 7deef44...5a22f34. Read the comment docs.
I'd rather have a clear understanding of what steps in logic fail under these circumstances. (Maybe you do, but I don't.)
Hence WIP :)