fix(muscript): properly decompile listOf

This commit is contained in:
Johannes Frohnmeyer 2024-04-05 14:18:48 +02:00
parent c9347fcec0
commit 62c13cc9ac
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);
}
}