Skip to content

Commit e1f085a

Browse files
committed
deps: update JuliaSyntax.jl and JuliaLowering.jl
Update the dependency branches for JuliaSyntax and JuliaLowering to `avi/JETLS-JSJL-head-2025-11-26`. This includes fixes to diagnostic range reporting for macro errors, where the range now starts after the `@` symbol.
1 parent 1bb6784 commit e1f085a

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
1717
1818
### Changed
1919

20+
- Updated JuliaSyntax.jl and JuliaLowering.jl dependencies to the latest
21+
development versions.
2022
- Updated documentation deployment to use `release` as the default version.
2123
The documentation now has two versions in the selector: `release` (stable) and
2224
`dev` (development). The root URL redirects to `/release/` by default.

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ TOML = "fa267f1f-6049-4f14-aa54-33bafae1ed76"
2424
[sources]
2525
Glob = {rev = "avi/globstar", url = "https://github.com/aviatesk/Glob.jl"}
2626
JET = {rev = "1e84376", url = "https://github.com/aviatesk/JET.jl"}
27-
JuliaLowering = {rev = "avi/JETLS-JSJL-head", subdir = "JuliaLowering", url = "https://github.com/JuliaLang/julia"}
28-
JuliaSyntax = {rev = "avi/JETLS-JSJL-head", subdir = "JuliaSyntax", url = "https://github.com/JuliaLang/julia"}
27+
JuliaLowering = {rev = "avi/JETLS-JSJL-head-2025-11-26", subdir = "JuliaLowering", url = "https://github.com/JuliaLang/julia"}
28+
JuliaSyntax = {rev = "avi/JETLS-JSJL-head-2025-11-26", subdir = "JuliaSyntax", url = "https://github.com/JuliaLang/julia"}
2929
LSP = {rev = "master", subdir = "LSP", url = "https://github.com/aviatesk/JETLS.jl"}
3030

3131
[compat]

test/test_lowering_diagnostics.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ end
444444
@test diagnostic.source == JETLS.DIAGNOSTIC_SOURCE
445445
@test diagnostic.message == "Macro name `@notexisting` not found"
446446
@test diagnostic.range.start.line == 0
447-
@test diagnostic.range.start.character == sizeof("x = ")
447+
@test diagnostic.range.start.character == sizeof("x = @")
448448
@test diagnostic.range.var"end".line == 0
449449
@test diagnostic.range.var"end".character == sizeof("x = @notexisting")
450450
end

0 commit comments

Comments
 (0)