From ba21ff36807dd35738f2beb10ed821253e77ef65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Koz=C5=82owski?= Date: Wed, 17 Jul 2024 22:58:06 +0200 Subject: [PATCH] v3 --- build.sbt | 2 +- .../scala/playground/smithyql/parser/{v2 => v3}/Demo.scala | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) rename modules/parser/src/main/scala/playground/smithyql/parser/{v2 => v3}/Demo.scala (97%) diff --git a/build.sbt b/build.sbt index 0b2556ba..2c1437d5 100644 --- a/build.sbt +++ b/build.sbt @@ -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( diff --git a/modules/parser/src/main/scala/playground/smithyql/parser/v2/Demo.scala b/modules/parser/src/main/scala/playground/smithyql/parser/v3/Demo.scala similarity index 97% rename from modules/parser/src/main/scala/playground/smithyql/parser/v2/Demo.scala rename to modules/parser/src/main/scala/playground/smithyql/parser/v3/Demo.scala index 2282d4ab..17b4e33e 100644 --- a/modules/parser/src/main/scala/playground/smithyql/parser/v2/Demo.scala +++ b/modules/parser/src/main/scala/playground/smithyql/parser/v3/Demo.scala @@ -1,4 +1,4 @@ -package playground.smithyql.parser.v2 +package playground.smithyql.parser.v3 import cats.Monad import cats.Parallel @@ -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._