(Arne Babenhauserheide)
2014-08-17: adjust test: found real error: parens in strings. adjust test: found real error: parens in strings.
diff --git a/tests/strangecomments.w b/tests/strangecomments.w --- a/tests/strangecomments.w +++ b/tests/strangecomments.w @@ -1,6 +1,18 @@ +; works +display + call-with-input-string " foo ; bar\n ; nop \n\n; nup\n; nup \n \n\n\n foo : moo \"\n\" \n___ . goo . hoo" wisp-scheme-read-chunk +newline +display + call-with-input-string " foo \n___. goo . hoo" wisp-scheme-read-chunk +newline + +; broken ; expected: ; ((2 (foo)) (2) (0) (0) (2 foo : moo ; ) (4 #{.}# [goo #{.}# hoo])) display call-with-input-string " (foo) ; bar\n ; nop \n\n; nup\n; nup \n \n\n\n foo : moo \"\n\" \n___ . [goo . hoo]" wisp-scheme-read-chunk newline +display + call-with-input-string " foo \n___. [goo . hoo]" wisp-scheme-read-chunk +newline