We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 18e8f82 + a085c5b commit 3f424c5Copy full SHA for 3f424c5
Sources/SwiftSyntax/SyntaxFactory.swift.gyb
@@ -206,9 +206,11 @@ public enum SyntaxFactory {
206
let segments = makeStringLiteralSegments([segment])
207
let openQuote = makeStringQuoteToken(leadingTrivia: leadingTrivia)
208
let closeQuote = makeStringQuoteToken(trailingTrivia: trailingTrivia)
209
- return makeStringLiteralExpr(openQuote: openQuote,
+ return makeStringLiteralExpr(openDelimiter: nil,
210
+ openQuote: openQuote,
211
segments: segments,
- closeQuote: closeQuote)
212
+ closeQuote: closeQuote,
213
+ closeDelimiter: nil)
214
}
215
216
public static func makeVariableExpr(_ text: String,
0 commit comments