summaryrefslogblamecommitdiff
path: root/src/library/scala/Dynamic.scala
blob: 25ce4ef6385fd7bdad93aff7b71ac6a08902585e (plain) (tree)
1
2
3
4
5
6
7
8
9

             
                                                                                

                                                                                   
                                   
   
               
 

 
 
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)`.
 */
trait Dynamic {

}