summaryrefslogtreecommitdiff
path: root/test/files/run/exprs_serialize.scala
blob: 075c902a34e2ccbf6ad8570ce8b2b68b78aad6e9 (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
26
27
28
import java.io._
import scala.reflect.runtime.universe._
import scala.reflect.runtime.{currentMirror => cm}

object Test extends App {
  def test(expr: Expr[_]) =
    try {
      val fout = new ByteArrayOutputStream()
      val out = new ObjectOutputStream(fout)
      out.writeObject(expr)
      out.close()
      fout.close()

      val fin = new ByteArrayInputStream(fout.toByteArray)
      val in = new ObjectInputStream(fin)
      val reexpr = in.readObject().asInstanceOf[scala.reflect.basis.Expr[_]].in(cm)
      in.close()
      fin.close()

      println(reexpr)
    } catch {
      case ex: Exception =>
        println(ex)
    }

  test(reify(2))
  test(reify{def foo = "hello"; foo + "world!"})
}