(buf: &mut &[u8])
| 525 | } |
| 526 | // Start collecting types |
| 527 | work.push(GetExprFrame::CollectLamType { |
| 528 | collected: Vec::new(), |
| 529 | remaining: tag.size, |
| 530 | }); |
| 531 | work.push(GetExprFrame::Parse); // first type |
| 532 | }, |
| 533 | Expr::FLAG_ALL => { |
| 534 | if tag.size == 0 { |
| 535 | return Err("get_expr: All with zero binders".to_string()); |
| 536 | } |
no test coverage detected