(expression: &Box<dyn Expr>)
| 3859 | #[inline(always)] |
| 3860 | #[allow(clippy::borrowed_box)] |
| 3861 | fn expression_literal(expression: &Box<dyn Expr>) -> Option<String> { |
| 3862 | if let Some(symbol) = expression.as_any().downcast_ref::<SymbolExpr>() { |
| 3863 | return Some(symbol.value.to_string()); |
| 3864 | } |
| 3865 | None |
| 3866 | } |
| 3867 | |
| 3868 | #[inline(always)] |
| 3869 | fn resolve_symbol_type_or_undefine(env: &mut Environment, name: &String) -> Box<dyn DataType> { |
no test coverage detected
searching dependent graphs…