(&self)
| 2049 | |
| 2050 | #[inline] |
| 2051 | pub fn as_generator_expr(&self) -> Option<&crate::ExprGenerator> { |
| 2052 | match self { |
| 2053 | Self::Generator(val) => Some(val), |
| 2054 | _ => None, |
| 2055 | } |
| 2056 | } |
| 2057 | |
| 2058 | #[inline] |
| 2059 | pub const fn is_await_expr(&self) -> bool { |
no outgoing calls
no test coverage detected