(&self)
| 2604 | |
| 2605 | #[inline] |
| 2606 | pub fn as_subscript_expr(&self) -> Option<&crate::ExprSubscript> { |
| 2607 | match self { |
| 2608 | Self::Subscript(val) => Some(val), |
| 2609 | _ => None, |
| 2610 | } |
| 2611 | } |
| 2612 | |
| 2613 | #[inline] |
| 2614 | pub const fn is_starred_expr(&self) -> bool { |
no outgoing calls
no test coverage detected