Builder concatenates list in output
Create builders for the following strategies:
// Prints: ‘ab’
print-test:
(selected, position, ast, path, project-path) -> (filename, result)
where
<guarantee-extension(|“renamed.aterm”)> path => filename ;
result := [“a”, “b”] // ab
// Prints: ‘"a","b"’
print-test2:
(selected, position, ast, path, project-path) -> (filename, result)
where
<guarantee-extension(|“renamed.aterm”)> path => filename ;
result := "a", "b" // "a", "b"The shallow list shows a simple string, the deep list shows a deep list.
Submitted by Tim on 30 November 2010 at 21:43
Expected would be to see a list in both cases.
Issue Log
On 8 December 2010 at 18:51 Lennart Kats tagged 0.6.0
On 8 December 2010 at 18:52 Lennart Kats closed this issue.
On 8 December 2010 at 18:52 Lennart Kats commented:
Fixed in
r21474
(to be released after 0.53.95).
On 9 December 2010 at 14:28 Lennart Kats tagged @lennartkats
On 9 December 2010 at 14:35 Lennart Kats tagged breaking
On 9 December 2010 at 14:39 Lennart Kats tagged incompatible
On 9 December 2010 at 14:39 Lennart Kats removed tag breaking
Log in to post comments