aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_cli
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-07-20 10:48:24 +0100
committerAleksey Kladov <[email protected]>2019-07-20 10:48:24 +0100
commit6d5d82e412dea19ea48eecc6f7d5a4aa223a9599 (patch)
treeddc74569a2ed64c9ad7fb451b2f83e3a53f56dfe /crates/ra_cli
parente18f8495d6569f4fc0b7457b65a1d199cf7b5974 (diff)
move debug_dump to fmt::Debug
Diffstat (limited to 'crates/ra_cli')
-rw-r--r--crates/ra_cli/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_cli/src/main.rs b/crates/ra_cli/src/main.rs
index 375e2f508..de8191ca3 100644
--- a/crates/ra_cli/src/main.rs
+++ b/crates/ra_cli/src/main.rs
@@ -55,7 +55,7 @@ fn main() -> Result<()> {
55 let _p = profile("parsing"); 55 let _p = profile("parsing");
56 let file = file()?; 56 let file = file()?;
57 if !matches.is_present("no-dump") { 57 if !matches.is_present("no-dump") {
58 println!("{}", file.syntax().debug_dump()); 58 println!("{:#?}", file.syntax());
59 } 59 }
60 std::mem::forget(file); 60 std::mem::forget(file);
61 } 61 }