-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
to try it, run "julia stage1.j", then "julia -J sys.ji.new". stage 0 is still the default until more testing has been done. eliminate all C-implemented generic function methods some were replaced with ccalls, which can be removed entirely or kept for debugging during stage0 bootstrapping. separate top-level binding lookup for read vs. assignment. allows using different import rules for assign, i.e. assignments go to the current environment rather than existing bindings in imported envs. removing more unused code move more stuff out of boot.j simplify recursive function type inference; just use a loop
- Loading branch information
1 parent
ec7571d
commit 6571654
Showing
18 changed files
with
362 additions
and
480 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
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
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
Oops, something went wrong.
6571654
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would just like to point out that the net code size change for this massive commit was -118 lines!
6571654
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's amazing. It's been fascinating watching the incredible code churn going on — with no discernible visible effect! Of course, I know it is all so that we can be self-hosting and have a real module system, both highly worthy goals.