index
:
aptitude
debian
debian-sid
master
pristine-tar
upstream
[no description]
Dyson
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
tests
/
test_parsers.cc
Age
Commit message (
Expand
)
Author
Files
Lines
2010-04-21
Fix a second type error in the parsers code.
Daniel Burrows
1
-1
/
+1
2010-04-21
Fix type errors caused by a change to the return type of fusion::make_vector.
Daniel Burrows
1
-3
/
+10
2010-04-04
Nomenclature change: manyOne -> manyPlus, sepByOne -> sepByPlus, skipManyOne ...
Daniel Burrows
1
-26
/
+26
2010-04-04
Implement a new system of "container parsers" that allows much more flexible ...
Daniel Burrows
1
-10
/
+239
2010-03-21
Add an explicit test that trailing separators don't confuse the parse library.
Daniel Burrows
1
-0
/
+12
2010-03-21
Write a parser that fails unconditionally.
Daniel Burrows
1
-0
/
+21
2010-03-20
Capture parse exceptions at the main entry point to the library and turn them...
Daniel Burrows
1
-24
/
+12
2010-03-20
Write code to test the error position reporting and parsing Boost ranges.
Daniel Burrows
1
-0
/
+42
2010-03-20
Write a "between" convenience routine that sandwiches a parser between two si...
Daniel Burrows
1
-0
/
+53
2010-03-20
Terminology change: skip -> skipMany.
Daniel Burrows
1
-24
/
+24
2010-03-20
Write a lexeme convenience wrapper that adds "drop trailing whitespace" to an...
Daniel Burrows
1
-0
/
+31
2010-03-20
Fix the expected input position after the foreach failure.
Daniel Burrows
1
-1
/
+1
2010-03-20
Test the failure case for both foreach and many.
Daniel Burrows
1
-0
/
+24
2010-03-20
Implement a sepBy parser for lists of separated values (e.g., comma-separated...
Daniel Burrows
1
-0
/
+70
2010-03-20
Change the internal protocol of the parser library to support tracking line a...
Daniel Burrows
1
-1
/
+1
2010-03-20
Use "parse" as the name of the main entry method, and "apply" as the name use...
Daniel Burrows
1
-105
/
+105
2010-03-20
Implement a convenience parser that parses zero or one copies of something.
Daniel Burrows
1
-0
/
+45
2010-03-20
Implement a parser that skips at least one copy of a token.
Daniel Burrows
1
-0
/
+52
2010-03-20
Implement a convenience wrapper using many_p<> and assert_p<> to parse only n...
Daniel Burrows
1
-0
/
+62
2010-03-20
Write a parser type that performs a post-assertion on the value that another ...
Daniel Burrows
1
-0
/
+34
2010-03-20
Use an appropriate typedef in std::string instead of ptrdiff_t.
Daniel Burrows
1
-88
/
+90
2010-03-20
Name the tests of followedBy "*FollowedBy*" instead of "*Lookahead*".
Daniel Burrows
1
-4
/
+4
2010-03-20
Implement a notFollowedBy parser, after Parsec's parser of the same name.
Daniel Burrows
1
-0
/
+32
2010-03-20
Implement a construct_f function object that wraps object constructors, and t...
Daniel Burrows
1
-0
/
+9
2010-03-20
Add tests of the lookahead parser.
Daniel Burrows
1
-0
/
+32
2010-03-20
Change the tests for (<<) and (>>) to verify return values.
Daniel Burrows
1
-6
/
+8
2010-03-20
Write a dual to (>>), (<<), which keeps its first argument instead of its sec...
Daniel Burrows
1
-0
/
+105
2010-03-20
Implement a parser that doesn't parse anything; instead, it just acts as an "...
Daniel Burrows
1
-0
/
+77
2010-03-19
Write some tests of the tuple parser.
Daniel Burrows
1
-0
/
+54
2010-03-19
Add a test that "maybe" returns the right thing.
Daniel Burrows
1
-0
/
+9
2010-03-19
Add tests of the "maybe" parser.
Daniel Burrows
1
-0
/
+22
2010-03-19
Add another test to explicitly check that multiply chained failures never try...
Daniel Burrows
1
-1
/
+9
2010-03-19
Fix test_parsers.cc for platforms where ptrdiff_t isn't the same as "int".
Daniel Burrows
1
-60
/
+60
2010-03-18
Write tests of the "or" parser.
Daniel Burrows
1
-0
/
+136
2010-03-18
Write tests for the "many" parser.
Daniel Burrows
1
-0
/
+56
2010-03-18
Write tests of the "skip" parser.
Daniel Burrows
1
-0
/
+52
2010-03-18
Write test of the foreach parser.
Daniel Burrows
1
-0
/
+64
2010-03-18
Use operator[] to attach custom expected values instead of operator<<.
Daniel Burrows
1
-1
/
+1
2010-03-18
Write a test of the set-expected parser.
Daniel Burrows
1
-0
/
+28
2010-03-18
Add tests of what happens when you chain several operator>> calls together.
Daniel Burrows
1
-0
/
+39
2010-03-17
Write some tests of the "and then" (>>) parser.
Daniel Burrows
1
-0
/
+66
2010-03-17
Write a test of the val() parser.
Daniel Burrows
1
-0
/
+12
2010-03-17
Actually invoke the new str() test.
Daniel Burrows
1
-0
/
+1
2010-03-17
Write a test of the str() parser.
Daniel Burrows
1
-0
/
+20
2010-03-17
Write a test for the EOF parser.
Daniel Burrows
1
-0
/
+25
2010-03-17
What we really care about when checking where "begin" moves after a failed in...
Daniel Burrows
1
-2
/
+2
2010-03-17
Invoke the public parser_base interface instead of the parse() interface ever...
Daniel Burrows
1
-20
/
+20
2010-03-17
Write some tests of the integer parser.
Daniel Burrows
1
-0
/
+74
2010-03-16
Add a suite of parser combinators.
Daniel Burrows
1
-0
/
+116