fix(muscript): properly decompile listOf
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
Johannes Frohnmeyer 2024-04-05 14:18:48 +02:00
parent 7a0d2f726e
commit 893b39fbe1
Signed by: Johannes
GPG Key ID: E76429612C2929F4
1 changed files with 1 additions and 1 deletions

View File

@ -42,6 +42,6 @@ public class ListOf extends DynamicExpr {
location,
new Variable(location, "listOf"),
elements.stream().map(s -> new Call.Arg(s, false)).toList()
);
).decompile(writer);
}
}