| 222 | //let c:u256 := add(a:u256, b:u256) |
| 223 | #[derive(Clone, PartialEq, Eq, Debug)] |
| 224 | pub struct ExprFunctionCall { |
| 225 | pub function_name: String, |
| 226 | pub exprs: Box<Vec<Expr>>, |
| 227 | pub inferred_return_types: Vec<Option<YulType>>, |
| 228 | pub inferred_param_types: Vec<Option<YulType>>, |
| 229 | } |
| 230 | |
| 231 | //Struct to represent a typed identifier |
| 232 | //Ex. x:u256 |
nothing calls this directly
no outgoing calls
no test coverage detected