| 211 | //if lt(a, b) { sstore(0, 1) } |
| 212 | #[derive(Clone, PartialEq, Eq, Debug)] |
| 213 | pub struct ExprIfStatement { |
| 214 | pub first_expr: Box<Expr>, |
| 215 | pub second_expr: Box<ExprBlock>, |
| 216 | } |
| 217 | |
| 218 | //Struct to represent a function call |
| 219 | //Ex. |
nothing calls this directly
no outgoing calls
no test coverage detected