-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* eliminates hacky overloads ! JuliaLang/julia#39305 is merged, and now we can really clean up our `abstractinterpretation.jl`. The legacy hacky overloads will be kept in `src/legacy/abstractinterpretation.jl` for the compatbility with Julia v1.6. JET benchmark will also show the impact analysis of constant prop' on union-split signatures on JET analysis. * add `at-doc` annotations * styling tweaks * codecov tweak
- Loading branch information
Showing
7 changed files
with
515 additions
and
839 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
src/legacy/* linguist-language=Julia | ||
src/legacy/*.md linguist-language=Markdown |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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,6 @@ | ||
This directory keeps legacy code, which is supposed to work with "older" Julia versions. | ||
It might not be "older" in the usual sense though – currently the code here is kept for the compatibility with Julia v1.6, whose stable version is not even released yet (as of 2021/03/11). | ||
This is because the `AbstractInterpreter` interface is really unstable at this point and right under the rapid development. | ||
|
||
Note that the files are not given `.jl` file extensions. | ||
This is a naive hack to prevent [CoverageTools.jl](https://github.com/JuliaCI/CoverageTools.jl) to take into account them when calculating a coverage. |
Oops, something went wrong.