We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9d0257 commit 738a5fbCopy full SHA for 738a5fb
Sources/SwiftSyntaxBuilder/generated/ExpressibleAsProtocols.swift
@@ -352,6 +352,14 @@ public extension ExpressibleAsArrowExpr {
352
return createArrowExpr()
353
}
354
355
+public protocol ExpressibleAsInfixOperatorExpr: ExpressibleAsExprBuildable {
356
+ func createInfixOperatorExpr() -> InfixOperatorExpr
357
+}
358
+public extension ExpressibleAsInfixOperatorExpr {
359
+ func createExprBuildable() -> ExprBuildable {
360
+ return createInfixOperatorExpr()
361
+ }
362
363
public protocol ExpressibleAsFloatLiteralExpr: ExpressibleAsExprBuildable {
364
func createFloatLiteralExpr() -> FloatLiteralExpr
365
0 commit comments