Skip to content

Commit b9f40be

Browse files
authored
Move JuliaSyntax + JuliaLowering into the main tree (#59870)
There's been some interest in having the new Julia compiler frontend (JuliaSyntax + JuliaLowering) in the main Julia tree so that these are easier to work on together and so the new lowering code can co-evolve with changes to Core more easily.
2 parents f5f4c01 + d0f24f2 commit b9f40be

File tree

136 files changed

+48042
-33
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

136 files changed

+48042
-33
lines changed

JuliaLowering/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/Manifest.toml

JuliaLowering/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024 JuliaHub and contributors
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

JuliaLowering/Project.toml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name = "JuliaLowering"
2+
uuid = "f3c80556-a63f-4383-b822-37d64f81a311"
3+
authors = ["Claire Foster <[email protected]> and contributors"]
4+
version = "1.0.0-DEV"
5+
6+
[deps]
7+
JuliaSyntax = "70703baa-626e-46a2-a12c-08ffd08c73b4"
8+
9+
[sources]
10+
JuliaSyntax = {path = "../JuliaSyntax"}
11+
12+
[compat]
13+
julia = "1"
14+
15+
[extras]
16+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
17+
Markdown = "d6f4376e-aef5-505a-96c1-9c027394607a"
18+
FileWatching = "7b1f6079-737a-58dc-b8bc-7a2ca5c1b5ee"
19+
REPL = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
20+
21+
[targets]
22+
test = ["Test", "FileWatching", "Markdown", "REPL"]

0 commit comments

Comments
 (0)