mirror of
https://github.com/textmate/textmate.git
synced 2026-04-28 03:00:34 -04:00
Make countOfLeafs/Excluded a readonly property
This commit is contained in:
@@ -6,8 +6,8 @@
|
||||
@property (nonatomic, weak) FFResultNode* parent;
|
||||
@property (nonatomic, weak) FFResultNode* next;
|
||||
@property (nonatomic, weak) FFResultNode* previous;
|
||||
@property (nonatomic) NSUInteger countOfLeafs;
|
||||
@property (nonatomic) NSUInteger countOfExcluded;
|
||||
@property (nonatomic, readonly) NSUInteger countOfLeafs;
|
||||
@property (nonatomic, readonly) NSUInteger countOfExcluded;
|
||||
|
||||
+ (FFResultNode*)resultNodeWithMatch:(FFMatch*)aMatch baseDirectory:(NSString*)base;
|
||||
+ (FFResultNode*)resultNodeWithMatch:(FFMatch*)aMatch;
|
||||
|
||||
@@ -107,6 +107,8 @@ static NSAttributedString* AttributedStringForMatch (std::string const& text, si
|
||||
{
|
||||
document::document_t::callback_t* _callback;
|
||||
}
|
||||
@property (nonatomic, readwrite) NSUInteger countOfLeafs;
|
||||
@property (nonatomic, readwrite) NSUInteger countOfExcluded;
|
||||
@end
|
||||
|
||||
@implementation FFResultNode
|
||||
|
||||
Reference in New Issue
Block a user