boucher / tdparsekit

A non-deterministic recursive descent parser written in Objective-J (ported from Obj-C, created by Tod Ditchendorf)

This URL has Read+Write access

tdparsekit / TDEmpty.j
100644 18 lines (12 sloc) 0.192 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@import "TDParser.j"
 
@implementation TDEmpty : TDParser {
 
}
 
+ (id)empty
{
    return [[self alloc] init];
}
 
- (CPSet)allMatchesFor:(CPSet)inAssemblies
{
    return inAssemblies;
}
 
@end