summaryrefslogtreecommitdiff
path: root/src/library/scala/util/grammar/TreeRHS.scala
blob: d6e7c015880189eaafdc3618cebb6f14f5031e15 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2003-2011, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |    http://scala-lang.org/               **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */



package scala.util.grammar

/** Right hand side of a tree production. */
@deprecated("This class will be removed", "2.10.0")
abstract class TreeRHS

/** Right hand side of a tree production, labelled with a letter from an alphabet. */
@deprecated("This class will be removed", "2.10.0")
case class LabelledRHS[A](label: A, hnt: Int) extends TreeRHS

@deprecated("This class will be removed", "2.10.0")
case object AnyTreeRHS extends TreeRHS