Visit PropertyRule to mark the AtKeyword and the Prelude
(&mut self, property: &PropertyRule<'a>)
| 132 | |
| 133 | // Visit PropertyRule to mark the AtKeyword and the Prelude |
| 134 | fn visit_property_rule<'a>(&mut self, property: &PropertyRule<'a>) { |
| 135 | self.insert(property.name.to_span(), SemanticKind::AtKeyword, SemanticModifier::none()); |
| 136 | self.insert(property.prelude.to_span(), SemanticKind::Declaration, SemanticModifier::Custom); |
| 137 | } |
| 138 | |
| 139 | // Visit Color nodes to decorate with the swatch |
| 140 | fn visit_color(&mut self, color: &Color) { |