package ast
Type Members
- case class AnyValueExpr() extends Expr with Product with Serializable
- case class CronExpr(mins: Expr, hours: Expr, days: Expr, months: Expr, dayOfWeeks: Expr) extends Expr with Product with Serializable
- trait Expr extends AnyRef
- trait ExprVisitor[T] extends AnyRef
- case class LastValueExpr() extends Expr with Product with Serializable
- case class ListExpr(exprs: List[Expr]) extends Expr with Product with Serializable
- case class NoOp() extends Expr with Product with Serializable
- case class PerExpr(digit: Expr, option: Expr) extends Expr with Product with Serializable
- case class RangeExpr(from: Expr, to: Expr, perOtion: Expr) extends Expr with Product with Serializable
- case class ValueExpr(digit: Int) extends Expr with Product with Serializable