summaryrefslogtreecommitdiff
path: root/examples/scala-js/stubs/src/main/scala/scala/scalajs/js/annotation/ExportAnnotations.scala
blob: be235966146bc982c6d8854a7f6d222979389320 (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-2013, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |    http://scala-lang.org/               **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */


package scala.scalajs.js.annotation

import scala.annotation.Annotation

class JSExportAll extends scala.annotation.Annotation
class JSExportDescendentObjects extends scala.annotation.Annotation
class JSExportDescendentClasses extends scala.annotation.Annotation

class JSExportNamed extends scala.annotation.Annotation {
  def this(name: String) = this()
}

class JSExport extends scala.annotation.Annotation {
  def this(name: String) = this()
}