TextSymbol

class TextSymbol(symbol: Char) : PlainTextNode

A text-based symbol, such as ©, , . This is usually the result of a combination of multiple characters (e.g. (C) ->©).

Parameters

symbol

processed symbol (e.g. ©)

See also

Constructors

Link copied to clipboard
constructor(symbol: Char)

Properties

Link copied to clipboard
open override val text: String

Functions

Link copied to clipboard
open override fun <T> accept(visitor: NodeVisitor<T>): T

Accepts a visitor.

Link copied to clipboard