- inspired by macrocosm and inkytonik's blog post
-
-
Save eed3si9n/4992129 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import scala.reflect.macros.Context | |
import scala.util.matching.Regex | |
import java.util.regex.PatternSyntaxException | |
object Macros { | |
implicit class RegexContext(val c: String) { | |
def regex(): Regex = macro regexImpl | |
} | |
def regexImpl(c: Context)(): c.Expr[Regex] = { | |
import c.universe._ | |
c.prefix.tree match { | |
case Apply(Select(_, _), List(Literal(Constant(str: String)))) => | |
try{ | |
str.r | |
}catch{ | |
case e: PatternSyntaxException => c.abort(c.enclosingPosition, e.toString) | |
} | |
val Apply(fun, _) = reify(new Regex("")).tree | |
c.Expr[Regex](Apply.apply(fun, c.literal(str).tree :: Nil)) | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Macros._ | |
object Main extends App{ | |
println("foo|bar".regex) // compile success ! | |
println("[foo".regex) // compile error ! | |
println("foo$".regex) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment