diff options
Diffstat (limited to 'Sil/Syntax.icl')
-rw-r--r-- | Sil/Syntax.icl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Sil/Syntax.icl b/Sil/Syntax.icl index 43d27fc..cc5c3ba 100644 --- a/Sil/Syntax.icl +++ b/Sil/Syntax.icl @@ -31,6 +31,8 @@ where toString (App n args) = n <+ "(" <+ printersperse ", " args <+ ")" toString (BuiltinApp op e) = op <+ "(" <+ e <+ ")" toString (BuiltinApp2 e1 op e2) = "(" <+ e1 <+ ") " <+ op <+ " (" <+ e2 <+ ")" + toString (Tuple _ es) = "(" <+ printersperse ", " es <+ ")" + toString (Field f e) = e <+ "." <+ f instance toString Op1 where |