(&self)
| 573 | } |
| 574 | |
| 575 | fn is_value_pattern_supported(&self) -> bool { |
| 576 | if self.0.supports_url() { |
| 577 | return true; |
| 578 | } |
| 579 | self.0.has_value() && !self.0.label_comes_from_value() |
| 580 | } |
| 581 | |
| 582 | fn is_range_value_pattern_supported(&self) -> bool { |
| 583 | self.0.numeric_value().is_some() |
nothing calls this directly
no test coverage detected