summaryrefslogtreecommitdiff
path: root/src/library/scala/util/parsing/syntax/package.scala
blob: 79343d5f80c050cbe15d3b17c1ec7e98023068f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2006-2011, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |                                         **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */

package scala.util.parsing

import scala.util.parsing.combinator.token

/** If deprecating the whole package worked, that's what would best
 *  be done, but it doesn't (yet) so it isn't.
 */
package object syntax {
  @deprecated("Moved to scala.util.parsing.combinator.token") type Tokens = token.Tokens
  @deprecated("Moved to scala.util.parsing.combinator.token") type StdTokens = token.StdTokens
}