Should compile ```python [a + b for Pair(a, b) in pairs] ``` or ```python [a + b match for Pair(a, b) in pairs] ``` into the equivalent of ```python [(def (Pair(a, b)) => a + b)(p) for p in pairs] ```
Should compile
or
into the equivalent of