summaryrefslogtreecommitdiff
path: root/src/compiler/scala/reflect/reify/NodePrinters.scala
blob: f0d0d0f5d4cd147e5cadc63d2bf952f4bbcbc0e7 (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
/* NSC -- new Scala compiler
 * Copyright 2005-2011 LAMP/EPFL
 * @author  Martin Odersky
 */

package scala.reflect
package reify

import scala.Array.canBuildFrom
import scala.compat.Platform.EOL
import scala.tools.nsc.symtab.Flags
import scala.tools.nsc.Global

trait NodePrinters { self: scala.tools.nsc.ast.NodePrinters =>

  val global: Global
  import global._

  object reifiedNodeToString extends Function2[Tree, Tree, String] {
    def apply(prefix: Tree, tree: Tree): String = {
      "temporarily disabled until reification is repaired"
    }
  }
}