Skip to content

Commit 09be915

Browse files
committed
Spin off parser combinators to scala-parser-combinators.jar.
1 parent 97613bd commit 09be915

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/partest/scala/tools/partest/nest/FileManager.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,14 @@ trait FileManager extends FileUtil {
6868
else
6969
(SFile(LATEST_LIB).parent.parent / "classes" / what).toAbsolute.path
7070
}
71+
def latestParserCBLib = relativeToLibrary("parser-combinators")
7172
def latestXmlLib = relativeToLibrary("xml")
7273
def latestScaladoc = relativeToLibrary("scaladoc")
7374
def latestInteractive = relativeToLibrary("interactive")
7475
def latestScalapFile = relativeToLibrary("scalap")
7576
def latestPaths = List(
7677
LATEST_LIB, LATEST_REFLECT, LATEST_COMP, LATEST_PARTEST, LATEST_ACTORS,
77-
latestXmlLib, latestScalapFile, latestScaladoc, latestInteractive
78+
latestParserCBLib, latestXmlLib, latestScalapFile, latestScaladoc, latestInteractive
7879
)
7980
def latestFiles = latestPaths map (p => new java.io.File(p))
8081
def latestUrls = latestFiles map (_.toURI.toURL)

0 commit comments

Comments
 (0)