( ss: &LeanSubstring, stt: &CompileState, bytes: &mut Vec<u8>, )
| 1548 | |
| 1549 | ExprData::Lam(name, ty, body, info, _) => { |
| 1550 | let name_addr = compile_name(name, stt); |
| 1551 | stack.push(Frame::BuildLam(name_addr, info.clone())); |
| 1552 | stack.push(Frame::Compile(body.clone())); |
| 1553 | stack.push(Frame::Compile(ty.clone())); |
| 1554 | }, |
| 1555 | |
| 1556 | ExprData::ForallE(name, ty, body, info, _) => { |
| 1557 | let name_addr = compile_name(name, stt); |
| 1558 | stack.push(Frame::BuildAll(name_addr, info.clone())); |
| 1559 | stack.push(Frame::Compile(body.clone())); |
| 1560 | stack.push(Frame::Compile(ty.clone())); |
| 1561 | }, |
no test coverage detected