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,10 +13,8 @@
@interface MPFactor : NSObject <MPExpressionTreeElement>
@property (nonatomic) BOOL hasMultiplicationSymbol;
@property (nonatomic, strong) MPOperatorChain *operatorChain;
@property (nonatomic, strong) id<MPValue> value;
- (NSRange)multiplicationSymbolRange;
@property (readonly, nonatomic) BOOL hasMultiplicationSymbol;
@property (readonly, nonatomic, strong) MPOperatorChain *operatorChain;
@property (readonly, nonatomic, strong) id<MPValue> value;
@end