Files
rust/crates/ra_tools/src/codegen.rs

8 lines
143 B
Rust
Raw Normal View History

2019-08-18 21:34:55 +03:00
use std::path::Path;
2019-08-18 21:33:31 +03:00
2019-08-18 21:34:55 +03:00
use crate::{Mode, Result};
pub fn generate_ast(grammar_src: &Path, dst: &Path, mode: Mode) -> Result<()> {
Ok(())
}