From 673bbdd986a13eaebfcf4f3fc79d65b5b9105553 Mon Sep 17 00:00:00 2001 From: "Meredith L. Patterson" <mlp@thesmartpolitenerd.com> Date: Fri, 3 Jan 2014 07:26:21 +0100 Subject: [PATCH] tests now compile! and all fail. --- lib/tsgenjava.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/tsgenjava.pl b/lib/tsgenjava.pl index 95f0aac4..0aec9ac4 100644 --- a/lib/tsgenjava.pl +++ b/lib/tsgenjava.pl @@ -156,11 +156,12 @@ pp_result_seq_r([X|Xs]) --> !, pp_byte_seq([]) --> !. pp_byte_seq([X|Xs]) --> !, + "(byte)", pp_parser(num(X)), pp_byte_seq_r(Xs). pp_byte_seq_r([]) --> !. pp_byte_seq_r([X|Xs]) --> !, - ", ", + ", (byte)", pp_parser(num(X)), pp_byte_seq_r(Xs). -- GitLab