backend: All AST types should implement Debug

This commit is contained in:
Nick Fitzgerald
2018-05-25 16:19:09 -07:00
parent 50b8842b95
commit 018f083402
3 changed files with 19 additions and 6 deletions

1
crates/backend/src/lib.rs Normal file → Executable file
View File

@ -1,4 +1,5 @@
#![recursion_limit = "256"]
#![deny(missing_debug_implementations)]
extern crate proc_macro2;
#[macro_use]