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 3b31f75 commit cecb40dCopy full SHA for cecb40d
Sources/FoundationMacros/PredicateMacro.swift
@@ -393,6 +393,8 @@ extension KeyPathExprSyntax {
393
}
394
case .subscript(let sub):
395
result = ExprSyntax(SubscriptCallExprSyntax(calledExpression: result, arguments: sub.arguments))
396
+ case .method(let method):
397
+ result = ExprSyntax(FunctionCallExprSyntax(calledExpression: method, arguments: method.arguments))
398
#if FOUNDATION_FRAMEWORK
399
default:
400
return nil
0 commit comments