Archived
1

Cleaned Code by Removing Location Tracking for Errors

This commit is contained in:
Kim Wittenburg
2014-11-07 19:50:28 +01:00
parent 91e7dbe9f2
commit 139a75f816
59 changed files with 355 additions and 532 deletions

View File

@@ -13,16 +13,9 @@
@interface MPExpressionTree : NSObject <MPExpressionTreeElement>
@property (nonatomic, copy) NSString *definedVariable;
- (NSArray *)summands;
- (void)appendSummand:(MPSummand *)summand;
- (void)insertSummand:(MPSummand *)summand
atIndex:(NSUInteger)index;
- (void)removeSummand:(MPSummand *)summand;
- (void)removeSummandAtIndex:(NSUInteger)index;
- (MPSummand *)summandAtIndex:(NSUInteger)index;
@property (readonly, nonatomic, strong) NSArray *summands;
- (BOOL)validateExpectingVariableDefinition:(BOOL)flag
error:(MPParseError *__autoreleasing *)error;
error:(NSError *__autoreleasing *)error;
@end