From b0ac4a02ad7bb4af546fa070191b099bdc9e3581 Mon Sep 17 00:00:00 2001 From: Jari Vetoniemi Date: Fri, 28 Sep 2018 14:13:11 +0300 Subject: types: handle raw string bytes --- src/compiler/compiler.lm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/compiler/compiler.lm') diff --git a/src/compiler/compiler.lm b/src/compiler/compiler.lm index 33b324a..3571527 100644 --- a/src/compiler/compiler.lm +++ b/src/compiler/compiler.lm @@ -296,7 +296,7 @@ print_declaration(d:fspec::declaration::type, ind:str) if (d.extra.length.result.value.number) { print(ind, INDSTP, 'it has a constant length of ', $d.extra.length.result.value, '\n') } else if (d.extra.length.result.value.string) { - print(ind, INDSTP, ' its length will increase until pattern `', $d.extra.length.result.value.string.raw, '` has been read from stream\n') + print(ind, INDSTP, ' its length will increase until pattern `', d.extra.length.result.value.string.escaped, '` has been read from stream\n') } } } else { -- cgit v1.2.3