| 133 | //Ex. case 0 { result := 1 } |
| 134 | #[derive(Clone, PartialEq, Eq, Debug)] |
| 135 | pub struct ExprCase { |
| 136 | pub literal: ExprLiteral, |
| 137 | pub block: ExprBlock, |
| 138 | } |
| 139 | |
| 140 | //Struct to represent a function definition |
| 141 | //Ex. function f(a,b) -> c, d { } |
nothing calls this directly
no outgoing calls
no test coverage detected