Skip to content

Instantly share code, notes, and snippets.

@lyricallogical
Forked from xuwei-k/Macros.scala
Last active December 13, 2015 23:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lyricallogical/4993548 to your computer and use it in GitHub Desktop.
Save lyricallogical/4993548 to your computer and use it in GitHub Desktop.
試してないけどこれでいいのでは
import scala.reflect.macros.Context
import scala.util.matching.Regex
import java.util.regex.PatternSyntaxException
object Macros{
implicit class RegexContext(val c: StringContext) {
def r(): Regex = macro regexImpl
}
def regexImpl(c: Context)(): c.Expr[Regex] = {
import c.universe._
c.prefix.tree match {
case Apply(_,List(Apply(_,List(Literal(Constant(str: String)))))) =>
try str.r catch {
case e: PatternSyntaxException => c.abort(c.enclosingPosition, e.toString)
}
reify(c.literal(str).splice.r)
}
}
}
import Macros._
object Main extends App{
println(r"foo|bar") // compile success !
println(r"[foo") // compile error !
println(r"foo$") // error: invalid string interpolation: `$$', `$'ident or `$'BlockExpr expected
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment