aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/scala/async/continuations/CPSBasedAsync.scala
blob: 922d1ac6e7ef39d0451706c41522a145cf6e177b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Copyright (C) 2012 Typesafe Inc. <http://www.typesafe.com>
 */

package scala.async
package continuations

import scala.language.experimental.macros

import scala.reflect.macros.Context
import scala.concurrent.Future

trait CPSBasedAsync extends CPSBasedAsyncBase with ScalaConcurrentCPSFallback

object CPSBasedAsync extends CPSBasedAsync {

  def async[T](body: T) = macro asyncImpl[T]

  override def asyncImpl[T: c.WeakTypeTag](c: Context)(body: c.Expr[T]): c.Expr[Future[T]] = super.asyncImpl[T](c)(body)

}