| 59 | dyn_clone::clone_trait_object!(Expr); |
| 60 | |
| 61 | pub trait Expr: DynClone { |
| 62 | fn kind(&self) -> ExprKind; |
| 63 | fn expr_type(&self) -> Box<dyn DataType>; |
| 64 | fn as_any(&self) -> &dyn Any; |
| 65 | } |
| 66 | |
| 67 | impl dyn Expr { |
| 68 | pub fn is_const(&self) -> bool { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…