We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 987a94c + 3faf8db commit 62b5239Copy full SHA for 62b5239
src/main/scala/org/camunda/feel/syntaxtree/Val.scala
@@ -323,7 +323,7 @@ case class ValList(itemsAsSeq: Seq[Val]) extends Val {
323
def copy(items: List[Val]): ValList = new ValList(items)
324
}
325
326
-object ValList {
+object ValList extends (List[Val] => ValList) {
327
def apply(items: List[Val]): ValList = new ValList(items)
328
def apply(items: Seq[Val]): ValList = new ValList(items)
329
0 commit comments