Skip to content

Commit

Permalink
v3
Browse files Browse the repository at this point in the history
  • Loading branch information
kubukoz committed Jul 17, 2024
1 parent e7c1f91 commit ba21ff3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ lazy val parser = module("parser")
.enablePlugins(Antlr4Plugin)
.settings(
Antlr4 / antlr4Version := "4.13.0",
Antlr4 / antlr4PackageName := Some("playground.smithyql.parser.v2"),
Antlr4 / antlr4PackageName := Some("playground.smithyql.parser.v3"),
Antlr4 / antlr4GenVisitor := true,
)
.dependsOn(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package playground.smithyql.parser.v2
package playground.smithyql.parser.v3

import cats.Monad
import cats.Parallel
Expand All @@ -12,8 +12,8 @@ import org.antlr.v4.runtime.RecognitionException
import org.antlr.v4.runtime.Recognizer
import org.antlr.v4.runtime.tree.ErrorNode
import org.antlr.v4.runtime.tree.TerminalNode
import playground.smithyql.parser.v2.Yikes.Source_fileContext
import playground.smithyql.parser.v2.Yikes.Use_clauseContext
import playground.smithyql.parser.v3.Yikes.Source_fileContext
import playground.smithyql.parser.v3.Yikes.Use_clauseContext

import scala.jdk.CollectionConverters._

Expand Down

0 comments on commit ba21ff3

Please sign in to comment.