Skip to content

Commit f5fc30a

Browse files
authored
Move range to each Node (RustPython#4969)
1 parent 7a6000d commit f5fc30a

File tree

7 files changed

+3911
-2985
lines changed

7 files changed

+3911
-2985
lines changed

Cargo.lock

Lines changed: 8 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,16 @@ rustpython-pylib = { path = "pylib" }
2929
rustpython-stdlib = { path = "stdlib" }
3030
rustpython-doc = { git = "https://github.com/RustPython/__doc__", branch = "main" }
3131

32-
rustpython-literal = { git = "https://github.com/RustPython/Parser.git", rev = "a983f4383fb1ad8c1c66acb1d5b0016e59f95a49" }
33-
rustpython-parser-core = { git = "https://github.com/RustPython/Parser.git", rev = "a983f4383fb1ad8c1c66acb1d5b0016e59f95a49" }
34-
rustpython-parser = { git = "https://github.com/RustPython/Parser.git", rev = "a983f4383fb1ad8c1c66acb1d5b0016e59f95a49" }
35-
rustpython-ast = { git = "https://github.com/RustPython/Parser.git", rev = "a983f4383fb1ad8c1c66acb1d5b0016e59f95a49" }
36-
rustpython-format = { git = "https://github.com/RustPython/Parser.git", rev = "a983f4383fb1ad8c1c66acb1d5b0016e59f95a49" }
37-
#rustpython-literal = { path = "../RustPython-parser/literal" }
38-
#rustpython-parser-core = { path = "../RustPython-parser/core" }
39-
#rustpython-parser = { path = "../RustPython-parser/parser" }
40-
#rustpython-ast = { path = "../RustPython-parser/ast" }
41-
#rustpython-format = { path = "../RustPython-parser/format" }
32+
rustpython-literal = { git = "https://github.com/youknowone/RustPython-Parser.git", rev = "718354673eb2cc9645d63fc0c50b4ad08e5595c2" }
33+
rustpython-parser-core = { git = "https://github.com/youknowone/RustPython-Parser.git", rev = "718354673eb2cc9645d63fc0c50b4ad08e5595c2" }
34+
rustpython-parser = { git = "https://github.com/youknowone/RustPython-Parser.git", rev = "718354673eb2cc9645d63fc0c50b4ad08e5595c2" }
35+
rustpython-ast = { git = "https://github.com/youknowone/RustPython-Parser.git", rev = "718354673eb2cc9645d63fc0c50b4ad08e5595c2" }
36+
rustpython-format = { git = "https://github.com/youknowone/RustPython-Parser.git", rev = "718354673eb2cc9645d63fc0c50b4ad08e5595c2" }
37+
# rustpython-literal = { path = "../RustPython-parser/literal" }
38+
# rustpython-parser-core = { path = "../RustPython-parser/core" }
39+
# rustpython-parser = { path = "../RustPython-parser/parser" }
40+
# rustpython-ast = { path = "../RustPython-parser/ast" }
41+
# rustpython-format = { path = "../RustPython-parser/format" }
4242

4343
ahash = "0.7.6"
4444
anyhow = "1.0.45"

0 commit comments

Comments
 (0)