From edc37bcf1b34992e244aaa950b20953ef5272113 Mon Sep 17 00:00:00 2001 From: Ulf Norell Date: Fri, 1 Mar 2019 11:08:28 +0100 Subject: [PATCH] add case for signature literals to pretty printer --- src/aeso_pretty.erl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/aeso_pretty.erl b/src/aeso_pretty.erl index 0c047ec..240c499 100644 --- a/src/aeso_pretty.erl +++ b/src/aeso_pretty.erl @@ -320,6 +320,7 @@ expr_p(_, E = {int, _, N}) -> text(S); expr_p(_, {bool, _, B}) -> text(atom_to_list(B)); expr_p(_, {hash, _, <>}) -> text("#" ++ integer_to_list(N, 16)); +expr_p(_, {hash, _, <>}) -> text("#" ++ integer_to_list(N, 16)); expr_p(_, {unit, _}) -> text("()"); expr_p(_, {string, _, S}) -> term(binary_to_list(S)); expr_p(_, {char, _, C}) ->