Close #67.
8.6 KiB
Megaparsec 4.2.0
-
Made
newPos
constructor and other functions inText.Megaparsec.Pos
smarter. Now it's impossible to createSourcePos
with non-positive line number or column number. Unfortunately we cannot useNumeric.Natural
because we need to support older versions ofbase
. -
ParseError
is now a monoid.mergeError
is used asmappend
. -
Added functions
addErrorMessages
andnewErrorMessages
to add several messages to existing error and to construct error with several attached messages respectively. -
parseFromFile
now lives inText.Megaparsec.Prim
. Previously we had 5 nearly identical definitions of the function, varying only in type-specificreadFile
function. Now the problem is solved by introduction ofStorableStream
type class. All supported stream types are instances of the class out of box and thus we have polymorphic version ofparseFromFile
. -
ParseError
is now instance ofException
(andTypeable
). -
Introduced
runParser'
andrunParserT'
functions that take and return parser state. This makes it possible to partially parse input, resume parsing, specify non-standard initial textual position, etc. -
Introduced
failure
function that allows to fail with arbitrary collection of messages.unexpected
is now defined in terms offailure
. One consequence of this design decision is thatfailure
is now method ofMonadParsec
, whileunexpected
is not. -
Removed deprecated combinators from
Text.Megaparsec.Combinator
:chainl
chainl1
chainr
chainr1
-
number
parser inText.Megaparsec.Lexer
now can be used withsigned
combinator to parse either signedInteger
or signedDouble
.
Megaparsec 4.1.1
-
Fixed bug in implementation of
sepEndBy
andsepEndBy1
and removed deprecation notes for these functions. -
Added tests for
sepEndBy
andsepEndBy1
.
Megaparsec 4.1.0
-
Relaxed dependency on
base
, so that minimal required version ofbase
is now 4.6.0.0. This allows Megaparsec to compile with GHC 7.6.x. -
Text.Megaparsec
andText.Megaparsec.Prim
do not export data typesConsumed
andReply
anymore because they are rather low-level implementation details that should not be visible to end-user. -
Representation of file name and textual position in error messages was made conventional.
-
Fixed some typos is documentation and other materials.
Megaparsec 4.0.0
General changes
-
Renamed
many1
→some
as well as other parsers that hadmany1
part in their names. -
The following functions are now re-exported from
Control.Applicative
:(<|>)
,many
,some
,optional
. See #9. -
Introduced type class
MonadParsec
in the style of MTL monad transformers. Eliminated built-in user state since it was not flexible enough and can be emulated via stack of monads. Now all tools in Megaparsec work with any instance ofMonadParsec
, not only withParsecT
. -
Added new function
parseMaybe
for lightweight parsing where error messages (and thus file name) are not important and entire input should be parsed. For example it can be used when parsing of single number according to specification of its format is desired. -
Fixed bug with
notFollowedBy
always succeeded with parsers that don't consume input, see #6. -
Flipped order of arguments in the primitive combinator
label
, see #21. -
Renamed
tokenPrim
→token
, removed oldtoken
, becausetokenPrim
is more general and originaltoken
is little used. -
Made
token
parser more powerful, now its second argument can returnEither [Message] a
instead ofMaybe a
, so it can influence error message when parsing of token fails. See #29. -
Added new primitive combinator
hidden p
which hides “expected” tokens in error message when parserp
fails. -
Tab width is not hard-coded anymore. It can be manipulated via
getTabWidth
andsetTabWidth
. Default tab-width isdefaultTabWidth
, which is 8.
Error messages
-
Introduced type class
ShowToken
and improved representation of characters and strings in error messages, see #12. -
Greatly improved quality of error messages. Fixed entire
Text.Megaparsec.Error
module, see #14 for more information. Made possible normal analysis of error messages without “render and re-parse” approach that previous maintainers had to practice to write even simplest tests, see moduleUtils.hs
inold-tests
for example. -
Reduced number of
Message
constructors (now there are onlyUnexpected
,Expected
, andMessage
). Empty “magic” message strings are ignored now, all the library now uses explicit error messages. -
Introduced hint system that greatly improves quality of error messages and made code of
Text.Megaparsec.Prim
a lot clearer.
Built-in combinators
-
All built-in combinators in
Text.Megaparsec.Combinator
now work with any instance ofAlternative
(some of them even withApplicaitve
). -
Added more powerful
count'
parser. This parser can be told to parse fromm
ton
occurrences of some thing.count
is defined in terms ofcount'
. -
Removed
optionMaybe
parser, becauseoptional
fromControl.Applicative
does the same thing. -
Added combinator
someTill
. -
These combinators are considered deprecated and will be removed in future:
chainl
chainl1
chainr
chainr1
sepEndBy
sepEndBy1
Character parsing
-
Renamed some parsers:
alphaNum
→alphaNumChar
digit
→digitChar
endOfLine
→eol
hexDigit
→hexDigitChar
letter
→letterChar
lower
→lowerChar
octDigit
→octDigitChar
space
→spaceChar
spaces
→space
upper
→upperChar
-
Added new character parsers in
Text.Megaparsec.Char
:asciiChar
charCategory
controlChar
latin1Char
markChar
numberChar
printChar
punctuationChar
separatorChar
symbolChar
-
Descriptions of old parsers have been updated to accent some Unicode-specific moments. For example, old description of
letter
stated that it parses letters from “a” to “z” and from “A” to “Z”. This is wrong, since it usedData.Char.isAlpha
predicate internally and thus parsed many more characters (letters of non-Latin languages, for example). -
Added combinators
char'
,oneOf'
,noneOf'
, andstring'
which are case-insensitive variants ofchar
,oneOf
,noneOf
, andstring
respectively.
Lexer
-
Rewritten parsing of numbers, fixed #2 and #3 (in old Parsec project these are number 35 and 39 respectively), added per bug tests.
-
Since Haskell report doesn't say anything about sign,
integer
andfloat
now parse numbers without sign. -
Removed
natural
parser, it's equal to newinteger
now. -
Renamed
naturalOrFloat
→number
— this doesn't parse sign too. -
Added new combinator
signed
to parse all sorts of signed numbers.
-
-
Transformed
Text.Parsec.Token
intoText.Megaparsec.Lexer
. Little of Parsec's code remains in the new lexer module. New module doesn't impose any assumptions on user and should be vastly more useful and general. Hairy stuff from original Parsec didn't get here, for example built-in Haskell functions are used to parse escape sequences and the like instead of trying to re-implement the whole thing.
Other
-
Renamed the following functions:
permute
→makePermParser
buildExpressionParser
→makeExprParser
-
Added comprehensive QuickCheck test suite.
-
Added benchmarks.
Parsec 3.1.9
-
Many and various updates to documentation and package description (including the homepage links).
-
Add an
Eq
instance forParseError
. -
Fixed a regression from 3.1.6:
runP
is again exported from moduleText.Parsec
.
Parsec 3.1.8
- Fix a regression from 3.1.6 related to exports from the main module.
Parsec 3.1.7
-
Fix a regression from 3.1.6 related to the reported position of error messages. See bug #9 for details.
-
Reset the current error position on success of
lookAhead
.
Parsec 3.1.6
-
Export
Text
instances fromText.Parsec
. -
Make
Text.Parsec
exports more visible. -
Re-arrange
Text.Parsec
exports. -
Add functions
crlf
andendOfLine
toText.Parsec.Char
for handling input streams that do not have normalized line terminators. -
Fix off-by-one error in
Token.charControl
.
Parsec 3.1.4 & 3.1.5
- Bump dependency on
text
.
Parsec 3.1.3
- Fix a regression introduced in 3.1.2 related to positions reported by error messages.