### Description Constructing an `ArrayExprSyntax` from a Swift array of arbitrary `ExprSyntax` values is a bit of a pain. Right now, we do silly dances like: ```swift let exprs: [ExprSyntax] = ... let exprString = exprs.lazy .map(\.trimmedDescription) .joined(separator: ", ") return ExprSyntax("[\(raw: exprString)]").as(ArrayExprSyntax.self) ``` Having a convenience initializer that inserts commas and necessary trailing trivia would make this much nicer.