Closed mark-koch closed 5 days ago
Attention: Patch coverage is 90.74074%
with 5 lines
in your changes missing coverage. Please review.
Project coverage is 92.61%. Comparing base (
f527703
) to head (5efa146
).
Files with missing lines | Patch % | Lines |
---|---|---|
guppylang/checker/expr_checker.py | 84.61% | 2 Missing :warning: |
guppylang/tys/parsing.py | 85.71% | 2 Missing :warning: |
guppylang/tys/printing.py | 66.66% | 1 Missing :warning: |
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Allow function definitions that are generic over parameters of kind
type
ornat
.GenericParamValue
AST node to represent usages of generic nat paramsn
inside function bodies. We need a way to encode this in Hugr. For now, we just emit a dummy node. See https://github.com/CQCL/hugr/issues/1629Note: Nested generic functions are not supported yet, so we don't have to worry about scoping of type params.
Closes #522