From 42377d3dad76f9748dd7a8e0fe737fec1fb4e3d0 Mon Sep 17 00:00:00 2001 From: k-nasa Date: Sun, 10 Oct 2021 10:10:52 +0900 Subject: [PATCH] Add code comment --- crates/syntax/src/syntax_node.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/syntax/src/syntax_node.rs b/crates/syntax/src/syntax_node.rs index bd7ea0240b9..8647c1dc756 100644 --- a/crates/syntax/src/syntax_node.rs +++ b/crates/syntax/src/syntax_node.rs @@ -47,6 +47,8 @@ impl SyntaxTreeBuilder { pub fn finish(self) -> Parse { let (green, errors) = self.finish_raw(); + // NOTE Why you're disabling assertions. + // ref: https://github.com/rust-analyzer/rust-analyzer/pull/10357 if cfg!(debug_assertions) && false { let node = SyntaxNode::new_root(green.clone()); crate::validation::validate_block_structure(&node);