aboutsummaryrefslogtreecommitdiff
path: root/doc-tool/src/dotty/tools/dottydoc/model/comment/Comment.scala
diff options
context:
space:
mode:
Diffstat (limited to 'doc-tool/src/dotty/tools/dottydoc/model/comment/Comment.scala')
-rw-r--r--doc-tool/src/dotty/tools/dottydoc/model/comment/Comment.scala23
1 files changed, 23 insertions, 0 deletions
diff --git a/doc-tool/src/dotty/tools/dottydoc/model/comment/Comment.scala b/doc-tool/src/dotty/tools/dottydoc/model/comment/Comment.scala
index c4f6ccf5d..2c48a4050 100644
--- a/doc-tool/src/dotty/tools/dottydoc/model/comment/Comment.scala
+++ b/doc-tool/src/dotty/tools/dottydoc/model/comment/Comment.scala
@@ -26,3 +26,26 @@ case class Comment (
/** List of conversions to hide - containing e.g: `scala.Predef.FloatArrayOps` */
hideImplicitConversions: List[String]
)
+
+private[comment] case class ParsedComment (
+ body: String,
+ authors: List[String],
+ see: List[String],
+ result: List[String],
+ throws: Map[String, String],
+ valueParams: Map[String, String],
+ typeParams: Map[String, String],
+ version: List[String],
+ since: List[String],
+ todo: List[String],
+ deprecated: List[String],
+ note: List[String],
+ example: List[String],
+ constructor: List[String],
+ group: List[String],
+ groupDesc: Map[String, String],
+ groupNames: Map[String, String],
+ groupPrio: Map[String, String],
+ hideImplicitConversions: List[String],
+ shortDescription: List[String]
+)