summaryrefslogtreecommitdiff
path: root/src/library/scala/native.scala
blob: 8fa70ec41ab0b5ad9d58f7f3c32de3ee2cb9cae2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2003-2009, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |    http://scala-lang.org/               **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */

// $Id$


package scala

/**
 * Marker for native methods.
 * <p>
 *   <code>@native def f(x: Int, y: List[Long]): String = ..</code>
 * </p>
 * <p>
 *   Method body is not generated if method is marked with <code>@native</code>,
 *   but it is type checked when present.
 * </p>
 */
class native extends StaticAnnotation {}