brintos

brintos / llvm-project-archived public Read only

0
0
Text · 671 B · 233af21 Raw
15 lines · plain
1// RUN: %clang_cc1 -fsyntax-only -fblocks -Wno-objc-root-class -Wdocumentation -verify %s2// expected-no-diagnostics3 4@interface NSPredicate5///     The full predicate to be used for drawing objects from the store.6///     It is an AND of the parent's `prefixPredicate` (e.g., the selection for7///     volume number) and the `filterPredicate` (selection by matching the name).8///     @return `nil` if there is no search string, and no prefix.9 10@property(readonly) NSPredicate *andPredicate;11///     The predicate that matches the string to be searched for. This12///     @return `nil` if there is no search string.13@property(readonly) NSPredicate *filterPredicate;14@end15