CommentTokens

data class CommentTokens(val line: String? = null, val block: CommentTokens.BlockComment? = null)

Comment tokens for a language, used by comment toggle commands.

Constructors

Link copied to clipboard
constructor(line: String? = null, block: CommentTokens.BlockComment? = null)

Types

Link copied to clipboard
data class BlockComment(val open: String, val close: String)

Properties

Link copied to clipboard
Link copied to clipboard
val line: String?