aboutsummaryrefslogtreecommitdiff
path: root/doc-tool/src/dotty/tools/dottydoc/model/internal.scala
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2017-01-13 11:39:48 +0100
committerFelix Mulder <felix.mulder@gmail.com>2017-01-31 14:31:08 +0100
commit2c08c956d39d9a06b3c5aa7eddc3b8c903f807df (patch)
treee0440216f9c70a023491f0e1ef00a0154b5806ee /doc-tool/src/dotty/tools/dottydoc/model/internal.scala
parent64a13956d5611117c7ec4913a79363694f1e70c3 (diff)
downloaddotty-2c08c956d39d9a06b3c5aa7eddc3b8c903f807df.tar.gz
dotty-2c08c956d39d9a06b3c5aa7eddc3b8c903f807df.tar.bz2
dotty-2c08c956d39d9a06b3c5aa7eddc3b8c903f807df.zip
Add annotations to doc AST
Diffstat (limited to 'doc-tool/src/dotty/tools/dottydoc/model/internal.scala')
-rw-r--r--doc-tool/src/dotty/tools/dottydoc/model/internal.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/doc-tool/src/dotty/tools/dottydoc/model/internal.scala b/doc-tool/src/dotty/tools/dottydoc/model/internal.scala
index 09f642d0b..9787da7ce 100644
--- a/doc-tool/src/dotty/tools/dottydoc/model/internal.scala
+++ b/doc-tool/src/dotty/tools/dottydoc/model/internal.scala
@@ -13,6 +13,7 @@ object internal {
final case class PackageImpl(
symbol: Symbol,
+ annotations: List[String],
name: String,
var members: List[Entity],
path: List[String],
@@ -24,6 +25,7 @@ object internal {
final case class ClassImpl(
symbol: Symbol,
+ annotations: List[String],
name: String,
members: List[Entity],
modifiers: List[String],
@@ -36,6 +38,7 @@ object internal {
final case class CaseClassImpl(
symbol: Symbol,
+ annotations: List[String],
name: String,
members: List[Entity],
modifiers: List[String],
@@ -48,6 +51,7 @@ object internal {
final case class TraitImpl(
symbol: Symbol,
+ annotations: List[String],
name: String,
members: List[Entity],
modifiers: List[String],
@@ -60,6 +64,7 @@ object internal {
final case class ObjectImpl(
symbol: Symbol,
+ annotations: List[String],
name: String,
members: List[Entity],
modifiers: List[String],
@@ -70,6 +75,7 @@ object internal {
final case class DefImpl(
symbol: Symbol,
+ annotations: List[String],
name: String,
modifiers: List[String],
path: List[String],
@@ -82,6 +88,7 @@ object internal {
final case class ValImpl(
symbol: Symbol,
+ annotations: List[String],
name: String,
modifiers: List[String],
path: List[String],