Skip to content

Commit

Permalink
fix(graindoc): Enable printing of arrow types (#1367)
Browse files Browse the repository at this point in the history
  • Loading branch information
ospencer committed Jul 22, 2022
1 parent 5280e98 commit e2b28ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/src/typed/oprint.re
Original file line number Diff line number Diff line change
Expand Up @@ -651,8 +651,8 @@ and print_out_sig_item = ppf =>
failwith("NYI: Otyp_variant pretty-printer")
| Otyp_open => failwith("NYI: Otyp_open pretty-printer")
| Otyp_alias(_, _) => failwith("NYI: Otyp_alias pretty-printer")
| Otyp_arrow(_, _) => failwith("NYI: Otyp_arrow pretty-printer")
| Otyp_class(_, _, _) => failwith("NYI: Otyp_class pretty-printer")
| Otyp_arrow(_, _)
| Otyp_abstract
| Otyp_tuple(_)
| Otyp_constr(_, _) => "type"
Expand Down

0 comments on commit e2b28ab

Please sign in to comment.