Archived
1

Cleaned Imports

This commit is contained in:
Kim Wittenburg
2014-11-08 01:05:08 +01:00
parent 139a75f816
commit f4f924bd71
80 changed files with 237 additions and 164 deletions

View File

@@ -6,8 +6,8 @@
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "MPToken.h"
@class MPTokenStream;
@protocol MPToken;
@interface MPTokenStream : NSObject
@@ -21,8 +21,8 @@
- (BOOL)hasMoreTokens;
- (MPToken *)currentToken;
- (MPToken *)peekNextToken;
- (id<MPToken>)currentToken;
- (id<MPToken>)peekNextToken;
- (void)currentTokenConsumed;
@end