summaryrefslogtreecommitdiff
path: root/src/reflect/scala/reflect/internal/BuildUtils.scala
diff options
context:
space:
mode:
authorDenys Shabalin <denys.shabalin@typesafe.com>2014-02-06 19:51:43 +0100
committerDenys Shabalin <denys.shabalin@typesafe.com>2014-02-07 12:47:45 +0100
commit1e5654c8bd10a3649ccc97c42a7949b179480073 (patch)
tree62bb8d1c833099d858209affc49b152eaf5e2a58 /src/reflect/scala/reflect/internal/BuildUtils.scala
parentd60b8323dda884653f31410806c269d15140e5e6 (diff)
downloadscala-1e5654c8bd10a3649ccc97c42a7949b179480073.tar.gz
scala-1e5654c8bd10a3649ccc97c42a7949b179480073.tar.bz2
scala-1e5654c8bd10a3649ccc97c42a7949b179480073.zip
Represent tq"" as SyntacticEmptyTypeTree rather than TypeTree()
Such representation codifies the fact that type tree that doesn't have embedded syntactic equivalent must have been inferred or otherwise provided by the compiler rather than specified by the end user. Additionally it also ensures that we can still match trees without explicit types (e.g. vals without type) after typechecking. Otherwise the same quote couldn't be used in situations like: val q"val x = 42" = typecheck(q"val x = 42")
Diffstat (limited to 'src/reflect/scala/reflect/internal/BuildUtils.scala')
-rw-r--r--src/reflect/scala/reflect/internal/BuildUtils.scala7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/reflect/scala/reflect/internal/BuildUtils.scala b/src/reflect/scala/reflect/internal/BuildUtils.scala
index b586297fcb..4f4d7df793 100644
--- a/src/reflect/scala/reflect/internal/BuildUtils.scala
+++ b/src/reflect/scala/reflect/internal/BuildUtils.scala
@@ -537,8 +537,11 @@ trait BuildUtils { self: SymbolTable =>
def unapply(tree: Tree): Option[Tree] = gen.Filter.unapply(tree)
}
- // a type tree which wasn't specified by the user but might have been inferred by compiler
- object SyntacticEmptyTypeTree {
+ // TypeTree without original is used to signal that no type was provided
+ // by the user and compiler should infer it instead. (Note: EmptyTree is
+ // not appropriate in such role, it's only used for terms, not types.)
+ object SyntacticEmptyTypeTree extends SyntacticEmptyTypeTreeExtractor {
+ def apply(): TypeTree = self.TypeTree()
def unapply(tt: TypeTree): Boolean = tt.original == null || tt.original.isEmpty
}