mirror of
https://github.com/RustPython/Parser.git
synced 2025-07-14 16:45:25 +00:00
7 lines
315 B
Bash
Executable file
7 lines
315 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
cd "$(dirname "$(dirname "$0")")"
|
|
|
|
python ast/asdl_rs.py --generic-file ast/src/gen/generic.rs --located-file ast/src/gen/located.rs --module-file ../RustPython/vm/src/stdlib/ast/gen.rs ast/Python.asdl
|
|
rustfmt ast/src/gen/generic.rs ast/src/gen/located.rs ../RustPython/vm/src/stdlib/ast/gen.rs
|