summaryrefslogtreecommitdiff
path: root/sources/scala/dbc/Utilities.scala
blob: 46ca27a0191ecb47400f590e9d02644dc8b26e64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2003-2005, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |                                         **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */

package scala.dbc;

/** An object offering transformation methods (views) on various values.
 *  This object's members must be visible in an expression to use value
 *  auto-conversion.
 */
object Utilities {

  def view (obj: statement.expression.Constant): Value =
    obj.constantValue;

  def view (obj: Value): statement.expression.Constant =
    new statement.expression.Constant {
      val constantValue = obj;
    }

}