summaryrefslogtreecommitdiff
path: root/src/library/scala/Dynamic.scala
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2011-07-13 20:31:32 +0000
committermichelou <michelou@epfl.ch>2011-07-13 20:31:32 +0000
commit5e49b4181976f20d28625008a775223dbf8e7f6e (patch)
tree7c6b89abee9c86801614b8fa081f3cf88bcfe6f6 /src/library/scala/Dynamic.scala
parentc614e932d01668cda6506fcb431a2f719f0a71f0 (diff)
downloadscala-5e49b4181976f20d28625008a775223dbf8e7f6e.tar.gz
scala-5e49b4181976f20d28625008a775223dbf8e7f6e.tar.bz2
scala-5e49b4181976f20d28625008a775223dbf8e7f6e.zip
cleanups (scaladoc 2, deprecation warnings, tra...
cleanups (scaladoc 2, deprecation warnings, trailing blanks)
Diffstat (limited to 'src/library/scala/Dynamic.scala')
-rw-r--r--src/library/scala/Dynamic.scala20
1 files changed, 14 insertions, 6 deletions
diff --git a/src/library/scala/Dynamic.scala b/src/library/scala/Dynamic.scala
index 2f99518988..32b57ee88f 100644
--- a/src/library/scala/Dynamic.scala
+++ b/src/library/scala/Dynamic.scala
@@ -1,12 +1,20 @@
+/* __ *\
+** ________ ___ / / ___ Scala API **
+** / __/ __// _ | / / / _ | (c) 2010-2011, LAMP/EPFL **
+** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
+** /____/\___/_/ |_/____/_/ | | **
+** |/ **
+\* */
+
package scala
-/** A marker trait that enables dynamic invocations. Instances `x` of this trait
- * allow calls `x.meth(args)` for arbitrary method names `meth` and argument lists
- * `args`. If a call is not natively supported by `x`, it is rewritten to
- * `x.applyDynamic("meth", args)`.
+/** A marker trait that enables dynamic invocations. Instances `x` of this
+ * trait allow calls `x.meth(args)` for arbitrary method names `meth` and
+ * argument lists `args`. If a call is not natively supported by `x`, it
+ * is rewritten to `x.applyDynamic("meth", args)`.
*
- * As of scala 2.9, scalac must receive the -Xexperimental optional for Dynamic
- * to receive this treatment.
+ * As of scala 2.9, `scalac` must receive the `-Xexperimental` option for
+ * `Dynamic` to receive this treatment.
*/
trait Dynamic