forked from DefinitelyTyped/DefinitelyTyped
-
Notifications
You must be signed in to change notification settings - Fork 0
/
parsimmon.d.ts
167 lines (153 loc) · 4.86 KB
/
parsimmon.d.ts
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
// Type definitions for Parsimmon 0.5.0
// Project: https://github.com/jneen/parsimmon
// Definitions by: Bart van der Schoor <https://github.com/Bartvds>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
// TODO convert to generics
declare module 'parsimmon' {
module Parsimmon {
export interface Mark<T> {
start: number;
end: number;
value: T;
}
export interface Result<T> {
status: boolean;
value?: T;
expected?: string;
index?: number;
}
export interface Parser<T> {
/*
parse the string
*/
parse(input: string): Result<T>;
/*
returns a new parser which tries parser, and if it fails uses otherParser.
*/
or(otherParser: Parser<T>): Parser<T>;
or<U>(otherParser: Parser<U>): Parser<any>;
/*
returns a new parser which tries parser, and on success calls the given function with the result of the parse, which is expected to return another parser, which will be tried next
*/
chain<U>(next: (result: T) => Parser<U>): Parser<U>;
/*
returns a new parser which tries parser, and on success calls the given function with the result of the parse, which is expected to return another parser.
*/
then<U>(call: (result: T) => Parser<U>): Parser<U>;
/*
expects anotherParser to follow parser, and yields the result of anotherParser. NB: the result of parser here is ignored.
*/
then<U>(anotherParser: Parser<U>): Parser<U>;
/*
transforms the output of parser with the given function.
*/
map<U>(call: (result: T) => U): Parser<U>;
/*
expects otherParser after parser, but preserves the yield value of parser.
*/
skip<U>(otherParser: Parser<U>): Parser<T>;
/*
returns a new parser with the same behavior, but which yields aResult.
*/
result<U>(aResult: U): Parser<U>;
/*
expects parser zero or more times, and yields an array of the results.
*/
many(): Parser<T[]>;
/*
expects parser exactly n times, and yields an array of the results.
*/
times(n: number): Parser<T[]>;
/*
expects parser between min and max times, and yields an array of the results.
*/
times(min: number, max: number): Parser<T[]>;
/*
expects parser at most n times. Yields an array of the results.
*/
atMost(n: number): Parser<T[]>;
/*
expects parser at least n times. Yields an array of the results.
*/
atLeast(n: number): Parser<T[]>;
/*
returns a new parser whose failure message is the passed description.
*/
mark(): Parser<Mark<T>>;
desc(description: string): Parser<T>;
}
/*
is a parser that expects to find "my-string", and will yield the same.
*/
export function string(mystring: string): Parser<string>;
/*
is a parser that expects the stream to match the given regex.
*/
export function regex(myregex: RegExp): Parser<string>;
/*
is a parser that doesn't consume any of the string, and yields result.
*/
export function succeed<U>(result: U): Parser<U>;
/*
accepts a variable number of parsers that it expects to find in order, yielding an array of the results.
*/
export function seq<U>(...parsers: Parser<U>[]): Parser<U[]>;
export function seq(...parsers: Parser<any>[]): Parser<any[]>;
/*
accepts a variable number of parsers, and yields the value of the first one that succeeds, backtracking in between.
*/
export function alt<U>(...parsers: Parser<U>[]): Parser<U>;
export function alt(...parsers: Parser<any>[]): Parser<any>;
/*
accepts a function that returns a parser, which is evaluated the first time the parser is used. This is useful for referencing parsers that haven't yet been defined.
*/
export function lazy<U>(f: () => Parser<U>): Parser<U>;
export function lazy<U>(description: string, f: () => Parser<U>): Parser<U>;
/*
fail paring with a message
*/
export function fail(message: string): Parser<void>;
export function fail<U>(message: string): Parser<U>;
/*
is equivalent to Parsimmon.regex(/[a-z]/i)
*/
export var letter: Parser<string>;
/*
is equivalent to Parsimmon.regex(/[a-z]*`/i)
*/
export var letters: Parser<string>;
/*
is equivalent to Parsimmon.regex(/[0-9]/)
*/
export var digit: Parser<string>;
/*
is equivalent to Parsimmon.regex(/[0-9]*`/)
*/
export var digits: Parser<string>;
/*
is equivalent to Parsimmon.regex(/\s+/)
*/
export var whitespace: Parser<string>;
/*
is equivalent to Parsimmon.regex(/\s*`/)
*/
export var optWhitespace: Parser<string>;
/*
consumes and yields the next character of the stream.
*/
export var any: Parser<string>;
/*
consumes and yields the entire remainder of the stream.
*/
export var all: Parser<string>;
/*
expects the end of the stream.
*/
export var eof: Parser<void>;
/*
is a parser that yields the current index of the parse.
*/
export var index: Parser<number>;
}
export = Parsimmon;
}