diff options
Diffstat (limited to 'crates/libsyntax2/src')
-rw-r--r-- | crates/libsyntax2/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/libsyntax2/src/lib.rs b/crates/libsyntax2/src/lib.rs index 74e8e7338..fd58cb4fa 100644 --- a/crates/libsyntax2/src/lib.rs +++ b/crates/libsyntax2/src/lib.rs | |||
@@ -149,7 +149,7 @@ fn find_reparsable_node(node: SyntaxNodeRef, range: TextRange) -> Option<(Syntax | |||
149 | MATCH_ARM_LIST => grammar::match_arm_list, | 149 | MATCH_ARM_LIST => grammar::match_arm_list, |
150 | USE_TREE_LIST => grammar::use_tree_list, | 150 | USE_TREE_LIST => grammar::use_tree_list, |
151 | EXTERN_ITEM_LIST => grammar::extern_item_list, | 151 | EXTERN_ITEM_LIST => grammar::extern_item_list, |
152 | TOKEN_TREE => grammar::token_tree, | 152 | TOKEN_TREE if node.first_child().unwrap().kind() == L_CURLY => grammar::token_tree, |
153 | ITEM_LIST => { | 153 | ITEM_LIST => { |
154 | let parent = node.parent().unwrap(); | 154 | let parent = node.parent().unwrap(); |
155 | match parent.kind() { | 155 | match parent.kind() { |