aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/SymDenotations.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2014-03-14 18:41:55 +0100
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2014-03-20 12:47:39 +0100
commitbff6b093d28bfc6918fa86d640353ba60b1a24e4 (patch)
tree0dac2d76ae4f92053d3793fd2d110b2636ccf4e6 /src/dotty/tools/dotc/core/SymDenotations.scala
parent2df29a28c8e0b2e36a341f5f969b00aee727b188 (diff)
downloaddotty-bff6b093d28bfc6918fa86d640353ba60b1a24e4.tar.gz
dotty-bff6b093d28bfc6918fa86d640353ba60b1a24e4.tar.bz2
dotty-bff6b093d28bfc6918fa86d640353ba60b1a24e4.zip
Add language feature mechanism
Add a method "featureEnabled" that checks whether a feature is enabled. Features can be enabled by imports or by command-line options. The Scala 2.10 way of enabling features by implicits got dropped, because the use of the feature mechanism is now different. Previously, features imposed restrictions on what used to work. So it was important to offer way to avoid the restrictions it that was as smooth as possible, and implicits fit the bill. Furthermore, features did not change the way things were compiled, so it was OK to test them only once all types were compiled. Now, features are essentially switches that change compile time behavior. keepUnions and noAutoTupling, if on, will modify the way type inference works. So we need to interprete a switch on the spot, and doing an implicit search to determine a switch value is too dangerous in what concerns causing cyclic references. At the same time, because we are dealing with new functionality, there is less of a concern for being able to set or reset features for large pieces of code with some implicit. You could argue that's not even desirable, and that an explicit import or command line option is preferable. Conflicts: src/dotty/tools/dotc/core/SymDenotations.scala
Diffstat (limited to 'src/dotty/tools/dotc/core/SymDenotations.scala')
-rw-r--r--src/dotty/tools/dotc/core/SymDenotations.scala14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/core/SymDenotations.scala b/src/dotty/tools/dotc/core/SymDenotations.scala
index 08566e3db..362738caf 100644
--- a/src/dotty/tools/dotc/core/SymDenotations.scala
+++ b/src/dotty/tools/dotc/core/SymDenotations.scala
@@ -9,7 +9,7 @@ import collection.mutable
import collection.immutable.BitSet
import scala.reflect.io.AbstractFile
import Decorators.SymbolIteratorDecorator
-import ast.tpd
+import ast._
import annotation.tailrec
import util.SimpleMap
import util.Stats
@@ -195,6 +195,18 @@ object SymDenotations {
final def hasAnnotation(cls: Symbol)(implicit ctx: Context) =
dropOtherAnnotations(annotations, cls).nonEmpty
+ /** Optionally, the arguments of the first annotation matching the given class symbol */
+ final def getAnnotationArgs(cls: Symbol)(implicit ctx: Context): Option[List[tpd.Tree]] =
+ dropOtherAnnotations(annotations, cls) match {
+ case annot :: _ =>
+ Some(
+ annot.tree match {
+ case Trees.Apply(_, args) => args
+ case _ => Nil
+ })
+ case nil => None
+ }
+
/** Add given annotation to the annotations of this denotation */
final def addAnnotation(annot: Annotation): Unit =
annotations = annot :: myAnnotations