forked from rentzsch/MiscMerge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_MiscMergeEndloopCommand.m
executable file
·52 lines (44 loc) · 1.45 KB
/
_MiscMergeEndloopCommand.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
//
// _MiscMergeEndloopCommand.m
//
// Written by Don Yacktman and Carl Lindberg
//
// Copyright 2001-2004 by Don Yacktman and Carl Lindberg.
// All rights reserved.
//
// This notice may not be removed from this source code.
//
// This header is included in the MiscKit by permission from the author
// and its use is governed by the MiscKit license, found in the file
// "License.rtf" in the MiscKit distribution. Please refer to that file
// for a list of all applicable permissions and restrictions.
//
#import "_MiscMergeEndloopCommand.h"
//#import <Foundation/NSUtilities.h>
#import <Foundation/NSString.h>
#import "_MiscMergeLoopCommand.h"
#import "MiscMergeCommandBlock.h"
@implementation _MiscMergeEndloopCommand
- (void)dealloc
{
[loopName release];
[super dealloc];
}
- (BOOL)parseFromScanner:(NSScanner *)aScanner template:(MiscMergeTemplate *)template
{
_MiscMergeLoopCommand *loopCommand = [[template currentCommandBlock] owner];
[self eatKeyWord:@"endloop" fromScanner:aScanner isOptional:NO];
loopName = [[self getArgumentStringFromScanner:aScanner toEnd:NO] retain];
if (![loopCommand isKindOfCommandClass:@"Loop"] ||
([loopName length] > 0 && [[loopCommand loopName] length] > 0 &&
![loopName isEqualToString:[loopCommand loopName]]))
{
[template reportParseError:@"Mismatched endloop command"];
}
else
{
[loopCommand handleEndLoopInTemplate:template];
}
return YES;
}
@end