summaryrefslogtreecommitdiff
path: root/sources/scala/util/grammar/TreeRHS.scala
blob: e4d391e12f96e347065b439346b1f7e84710dce8 (plain) (blame)
1
2
3
4
5
6
7
8
9
package scala.util.grammar;

/** right hand side of a tree production */
abstract class TreeRHS;

/** right hand side of a tree production, labelled with a letter from an alphabet */
case class  LabelledRHS[A](label: A, hnt: Int) extends TreeRHS;

case object AnyTreeRHS extends TreeRHS;