You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CompatHelper: bump compat for JuliaSyntax to 1, (keep existing compat) (#287)
This pull request changes the compat entry for the `JuliaSyntax` package
from `0.4` to `0.4, 1`.
This keeps the compat entries for earlier versions.
Note: I have not tested your package with this new compat entry.
It is your responsibility to make sure that your package tests pass
before you merge this pull request.
---------
Co-authored-by: CompatHelper Julia <[email protected]>
Co-authored-by: Xianda Sun <[email protected]>
Co-authored-by: Xianda Sun <[email protected]>
# Julia reserved words are parsed to special tokens, to allow using these as variable names, we need to wrap them
36
38
# in `var"..."` to avoid syntax error in the generated Julia program
37
39
# full list of possible tokens are here: https://github.com/JuliaLang/JuliaSyntax.jl/blob/main/src/kinds.jl
38
-
JULIA_RESERVED_WORDS_W_O_FOR =KSet"baremodule begin break catch const continue do else elseif end export false finally function global if import let local macro module quote return struct true try using where while"
40
+
JULIA_RESERVED_WORDS_W_O_FOR =KSet"baremodule begin break catch const continue do export elseif end export finally function global if import let local macro module quote return struct try using where while"
0 commit comments