Skip to content

Commit

Permalink
updated jflex to hopefully fixed compilation on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
pruemmer committed Jul 19, 2018
1 parent 8a2f1d6 commit 8f4e967
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lazabs/horn/parser/HornReader.scala
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ import scala.collection.mutable.{HashMap => MHashMap, ArrayBuffer,

object HornReader {
def apply(fileName: String): Seq[HornClause] = {
val in: InputStream = new FileInputStream(fileName)
val in = new java.io.BufferedReader (
new java.io.FileReader(fileName))
val lexer = new HornLexer(in)
val parser = new Parser(lexer)
val tree = parser.parse()
Expand Down
Binary file modified tools/JFlex.jar
Binary file not shown.

0 comments on commit 8f4e967

Please sign in to comment.