comment out disabled code

This commit is contained in:
Daniel Eades 2022-12-30 11:20:48 +00:00
parent 368e0bb32f
commit ef4debc8b1

View file

@ -48,10 +48,10 @@ impl SyntaxTreeBuilder {
pub fn finish(self) -> Parse<SyntaxNode> {
let (green, errors) = self.finish_raw();
// Disable block validation, see https://github.com/rust-lang/rust-analyzer/pull/10357
if cfg!(debug_assertions) && false {
let node = SyntaxNode::new_root(green.clone());
crate::validation::validate_block_structure(&node);
}
// if cfg!(debug_assertions) {
// let node = SyntaxNode::new_root(green.clone());
// crate::validation::validate_block_structure(&node);
// }
Parse::new(green, errors)
}