Packages

package common

Type Members

  1. case class BlockCommentNode (rawText: String, embeddedContents: Option[EmbeddedContentsNode] = None) extends MultilineCommentNode with Product with Serializable

    A C-style, block (multiline) comment node.

  2. trait CommonCommentNode extends CommentNode

    Tagging trait for common type of comments as found in C-style programming languages, like Java, C++, and C#.

  3. case class InlineCommentNode (rawText: String, embeddedContents: Option[EmbeddedContentsNode] = None) extends CommonCommentNode with Product with Serializable

    Represents a C++-style inline comment node.

  4. trait MultilineCommentNode extends CommentNode

    A tagging trait for multiline comments.

Ungrouped