Skip to content

Commit 24721a2

Browse files
committed
tweaks
1 parent e09b817 commit 24721a2

7 files changed

+49
-15
lines changed

build.sc

+2-2
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ trait ExampleParseJvmModule extends CommonCrossModule{
122122

123123
trait CommonCrossModule extends CrossScalaModule with PublishModule{
124124

125-
def publishVersion = "2.0.0"
125+
def publishVersion = "2.0.1"
126126
def artifactName = millModuleSegments.parts.dropRight(2).mkString("-")
127127
def pomSettings = PomSettings(
128128
description = artifactName(),
@@ -138,7 +138,7 @@ trait CommonCrossModule extends CrossScalaModule with PublishModule{
138138
)
139139
)
140140

141-
def scalaDocPluginClasspath = T{ Agg() }
141+
def scalaDocPluginClasspath = T{ Agg[PathRef]() }
142142
def scalacOptions = T{ if (scalaVersion() == "2.12.7") Seq("-opt:l:method") else Nil }
143143

144144
def platformSegment: String

fastparse/src/fastparse/Parsed.scala

+36-2
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,29 @@ object Parsed{
2525
Parsed.Extra(p.input, p.startIndex, p.index, p.originalParser, p.failureStack)
2626
)
2727
}
28+
29+
/**
30+
* The outcome of a successful parse
31+
*
32+
* @param value The value returned by the parse
33+
* @param index The index at which the parse completed at
34+
*/
2835
final case class Success[+T](value: T, index: Int) extends Parsed[T](true){
2936
def get = this
3037
def fold[V](onFailure: (String, Int, Extra) => V, onSuccess: (T, Int) => V) = onSuccess(value, index)
3138
override def toString() = s"Parsed.Success($value, $index)"
3239
}
40+
41+
/**
42+
* The outcome of a failed parse
43+
*
44+
* @param failureLabel A hint as to why the parse failed. Defaults to "",
45+
* unless you set `verboseFailures = true` or call
46+
* `.trace()` on an existing failure
47+
* @param index The index at which the parse failed
48+
* @param extra Metadata about the parse; useful for re-running the parse
49+
* to trace out a more detailed error report
50+
*/
3351
final case class Failure(failureLabel: String,
3452
index: Int,
3553
extra: Extra) extends Parsed[Nothing](false){
@@ -122,6 +140,18 @@ object Parsed{
122140
)
123141
}
124142
}
143+
144+
/**
145+
* A decorated [[Failure]] with extra metadata; provides a much more
146+
* detailed, through verbose, of the possible inputs that may have been
147+
* expected at the index at which the parse failed.
148+
*
149+
* @param failureAggregate contains not just the parsers which were present
150+
* when the parse finally failed, but also any other
151+
* parsers which may have earlier been tried at the
152+
* same index.
153+
* @param failure The raw failure object
154+
*/
125155
case class TracedFailure(failureAggregate: Seq[String],
126156
failure: Failure){
127157
def failureLabel = failure.failureLabel
@@ -135,9 +165,13 @@ object Parsed{
135165

136166
@deprecated("Use .msg instead")
137167
def trace = longAggregateMsg
138-
168+
/**
169+
* Displays the failure message excluding the parse stack
170+
*/
139171
def msg = failure.msg
140-
172+
/**
173+
* Displays the failure message including the parse stack, if possible
174+
*/
141175
def longMsg = failure.longMsg
142176
/**
143177
* Displays the aggregate failure message, excluding the parse stack

readme/Changelog.scalatex

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@import Main._
22
@sect{Change Log}
3-
@sect{2.0.0}
3+
@sect{2.0.1}
44
@ul
55
@li
66
Major rewrite of @sect.ref{Internals} with some changes to

readme/ExampleParsers.scalatex

+4-4
Original file line numberDiff line numberDiff line change
@@ -193,13 +193,13 @@
193193
To begin using ScalaParse, add
194194

195195
@hl.scala
196-
"com.lihaoyi" %% "scalaparse" % "2.0.0"
196+
"com.lihaoyi" %% "scalaparse" % "2.0.1"
197197

198198
@p
199199
To your SBT configuration. To use with Scala.js, you'll need
200200

201201
@hl.scala
202-
"com.lihaoyi" %%% "scalaparse" % "2.0.0"
202+
"com.lihaoyi" %%% "scalaparse" % "2.0.1"
203203

204204
@sect{PythonParse}
205205
@div(id := "pythondiv")
@@ -211,7 +211,7 @@
211211
PythonParse is currently compatible enough to parse all the python sources in Zulip, Ansible, Changes, Django, and Flask. It isn't published yet on maven central, but feel free to look at it if you want an idea of how to write a complex, real parser.
212212

213213
@hl.scala
214-
"com.lihaoyi" %%% "pythonparse" % "2.0.0"
214+
"com.lihaoyi" %%% "pythonparse" % "2.0.1"
215215

216216
@sect{CssParse}
217217
@p
@@ -249,4 +249,4 @@
249249
This is available on Maven Central as
250250

251251
@hl.scala
252-
"com.lihaoyi" %%% "cssparse" % "2.0.0"
252+
"com.lihaoyi" %%% "cssparse" % "2.0.1"

readme/FastParseInternals.scalatex

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@import Main._
22
@sect{Internals}
33
@p
4-
FastParse 2.0.0 is implemented as a set of methods that perform a
4+
FastParse 2.0.1 is implemented as a set of methods that perform a
55
recursive-descent parse on the given input, with all book-keeping
66
information maintained in the @code{fastparse.ParsingRun[T]} objects
77
(abbreviated @code{fastparse.P[T]}). @code{ParsingRun}s are mutable,

readme/GettingStarted.scalatex

+4-4
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@
4242
To begin using FastParse, add the following to your build config
4343

4444
@hl.scala
45-
"com.lihaoyi" %% "fastparse" % "2.0.0" // SBT
46-
ivy"com.lihaoyi::fastparse:2.0.0" // Mill
45+
"com.lihaoyi" %% "fastparse" % "2.0.1" // SBT
46+
ivy"com.lihaoyi::fastparse:2.0.1" // Mill
4747

4848
@p
4949
To use with Scala.js, you'll need
5050
@hl.scala
51-
"com.lihaoyi" %%% "fastparse" % "2.0.0" // SBT
52-
ivy"com.lihaoyi::fastparse::2.0.0" // Mill
51+
"com.lihaoyi" %%% "fastparse" % "2.0.1" // SBT
52+
ivy"com.lihaoyi::fastparse::2.0.1" // Mill
5353

readme/Readme.scalatex

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
)
2121
)
2222

23-
@sect("FastParse 2.0.0", "Fast to write, Fast running Parsers in Scala")
23+
@sect("FastParse 2.0.1", "Fast to write, Fast running Parsers in Scala")
2424
@GettingStarted()
2525

2626
@WritingParsers()

0 commit comments

Comments
 (0)