Skip to content

Commit

Permalink
fkrmat
Browse files Browse the repository at this point in the history
  • Loading branch information
mio-19 committed Oct 25, 2024
1 parent 45eb269 commit a40c1dd
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -1251,7 +1251,7 @@ lazy val interpreter = crossProject(JSPlatform, JVMPlatform, NativePlatform)
"-target",
"17"
)
},
}
)

lazy val root = crossProject(JSPlatform, JVMPlatform, NativePlatform)
Expand Down
2 changes: 0 additions & 2 deletions compiler213/shared/src/main/scala/chester/scala/Test.scala
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ import chester.backend.scala.Scala
import scala.meta
import chester.syntax.core

import scala.meta._
import chester.syntax.core._

import scala.meta._

Expand Down
2 changes: 1 addition & 1 deletion syntax/src/main/scala/chester/syntax/core/Term.scala
Original file line number Diff line number Diff line change
Expand Up @@ -1237,7 +1237,7 @@ object UnitTerm {
case TupleTerm(Vector(), meta) => Some(meta)
case _ => None
}
def apply(meta: OptionTermMeta) =
def apply(meta: OptionTermMeta): TupleTerm =
TupleTerm(Vector.empty, meta = meta)

}
Expand Down
4 changes: 1 addition & 3 deletions tyck/src/main/scala/chester/cps/CPSTrans.scala
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
package chester.cps

// placeholder for CPS Transformations
object CPSTrans {

}
object CPSTrans {}

0 comments on commit a40c1dd

Please sign in to comment.