dc10.scala.ctx.CompilerError.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dc10-scala_3 Show documentation
Show all versions of dc10-scala_3 Show documentation
A definitional compiler for generating Scala code.
package dc10.scala.ctx
import dc10.scala.{Statement, Symbol}
type ErrorF[A] = Either[List[CompilerError], A]
sealed trait CompilerError
case class IdentifierStatementExpected(butFound: Statement) extends CompilerError
case class IdentifierSymbolExpected(butFound: Symbol) extends CompilerError
© 2015 - 2025 Weber Informatics LLC | Privacy Policy