package common
Type Members
-
case class
BlockCommentNode
(rawText: String, embeddedContents: Option[EmbeddedContentsNode] = None) extends MultilineCommentNode with Product with Serializable
A C-style, block (multiline) comment node.
-
trait
CommonCommentNode
extends CommentNode
Tagging trait for common type of comments as found in C-style programming languages, like Java, C++, and C#.
-
case class
InlineCommentNode
(rawText: String, embeddedContents: Option[EmbeddedContentsNode] = None) extends CommonCommentNode with Product with Serializable
Represents a C++-style inline comment node.
-
trait
MultilineCommentNode
extends CommentNode
A tagging trait for multiline comments.