summaryrefslogtreecommitdiff
path: root/src/compiler/scala/reflect/reify/codegen/GenUtils.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-11-13 00:14:40 -0800
committerPaul Phillips <paulp@improving.org>2012-11-19 11:55:06 -0800
commitd5e3f85946af966111f88af90a666a709df0ba6f (patch)
treeedb2d3cfae76679bc0311f3c22d01779a2f32ef3 /src/compiler/scala/reflect/reify/codegen/GenUtils.scala
parent645c2676dd6699ac24a57dfe750386bbdb827ee8 (diff)
downloadscala-d5e3f85946af966111f88af90a666a709df0ba6f.tar.gz
scala-d5e3f85946af966111f88af90a666a709df0ba6f.tar.bz2
scala-d5e3f85946af966111f88af90a666a709df0ba6f.zip
Revert "Commenting out unused members."
This reverts commit 951fc3a486.
Diffstat (limited to 'src/compiler/scala/reflect/reify/codegen/GenUtils.scala')
-rw-r--r--src/compiler/scala/reflect/reify/codegen/GenUtils.scala40
1 files changed, 20 insertions, 20 deletions
diff --git a/src/compiler/scala/reflect/reify/codegen/GenUtils.scala b/src/compiler/scala/reflect/reify/codegen/GenUtils.scala
index d0f8ae76e2..6554947f88 100644
--- a/src/compiler/scala/reflect/reify/codegen/GenUtils.scala
+++ b/src/compiler/scala/reflect/reify/codegen/GenUtils.scala
@@ -91,20 +91,20 @@ trait GenUtils {
def termPath(fullname: String): Tree = path(fullname, newTermName)
/** An (unreified) path that refers to type definition with given fully qualified name */
- // def typePath(fullname: String): Tree = path(fullname, newTypeName)
-
- // def isTough(tpe: Type) = {
- // def isTough(tpe: Type) = tpe match {
- // case _: RefinedType => true
- // case _: ExistentialType => true
- // case _: ClassInfoType => true
- // case _: MethodType => true
- // case _: PolyType => true
- // case _ => false
- // }
+ def typePath(fullname: String): Tree = path(fullname, newTypeName)
+
+ def isTough(tpe: Type) = {
+ def isTough(tpe: Type) = tpe match {
+ case _: RefinedType => true
+ case _: ExistentialType => true
+ case _: ClassInfoType => true
+ case _: MethodType => true
+ case _: PolyType => true
+ case _ => false
+ }
- // tpe != null && (tpe exists isTough)
- // }
+ tpe != null && (tpe exists isTough)
+ }
object TypedOrAnnotated {
def unapply(tree: Tree): Option[Tree] = tree match {
@@ -117,14 +117,14 @@ trait GenUtils {
}
}
- // def isAnnotated(tpe: Type) = {
- // def isAnnotated(tpe: Type) = tpe match {
- // case _: AnnotatedType => true
- // case _ => false
- // }
+ def isAnnotated(tpe: Type) = {
+ def isAnnotated(tpe: Type) = tpe match {
+ case _: AnnotatedType => true
+ case _ => false
+ }
- // tpe != null && (tpe exists isAnnotated)
- // }
+ tpe != null && (tpe exists isAnnotated)
+ }
def isSemiConcreteTypeMember(tpe: Type) = tpe match {
case TypeRef(SingleType(_, _), sym, _) if sym.isAbstractType && !sym.isExistential => true