(input: ParseStream)
| 737 | type Result = syn::Result<MirScalarExpr>; |
| 738 | |
| 739 | pub fn parse_exprs(input: ParseStream) -> syn::Result<Vec<MirScalarExpr>> { |
| 740 | input.parse_comma_sep(parse_expr) |
| 741 | } |
| 742 | |
| 743 | /// Parses a single expression. |
| 744 | /// |
no test coverage detected