From f8cfdd0f2276afe2f924295c192256601db595db Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sat, 15 Sep 2018 15:39:38 -0700 Subject: Better parsing of strings and handling of non-printable characters and tabs. --- core/collections.nom | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'core/collections.nom') diff --git a/core/collections.nom b/core/collections.nom index 5daaa09..8dbc79d 100644 --- a/core/collections.nom +++ b/core/collections.nom @@ -84,8 +84,7 @@ parse [..] # Dict comprehensions test: assume (((% * %) = % for % in [1, 2, 3]) == {1:1, 4:2, 9:3}) -parse [%key = %value for %item in %iterable, %key %value for %item in %iterable] as -..(..) +parse [%key = %value for %item in %iterable, %key %value for %item in %iterable] as (..) result of: %comprehension = {} for %item in %iterable: -- cgit v1.2.3