This commit is contained in:
alari 2018-09-08 12:53:29 +02:00
parent d0dbaa71f7
commit aa725a41ba

View File

@ -5,5 +5,8 @@ sealed trait Expr[T <: types.Type] {
}
object Expr {
case class Ref[T]()
case class Ref[T <: types.Type](name: String) extends Expr[T] {
override def toVyper(depth: Int): String =
(" " * depth) + name
}
}