Home
last modified time | relevance | path

Searched defs:MarkdownDelimiter (Results 1 – 1 of 1) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Ddoc.d2817 private struct MarkdownDelimiter struct
2819 size_t iStart; /// the index where this delimiter starts
2820 int count; /// the length of this delimeter's start sequence
2821 int macroLevel; /// the count of nested DDoc macros when the delimiter is started
2822 … bool leftFlanking; /// whether the delimiter is left-flanking, as defined by the CommonMark spec
2823 … bool rightFlanking; /// whether the delimiter is right-flanking, as defined by the CommonMark spec
2824 bool atParagraphStart; /// whether the delimiter is at the start of a paragraph
2825 char type; /// the type of delimiter, defined by its starting character
2828 @property bool isValid() const { return count != 0; } in isValid()
2831 void invalidate() { count = 0; } in invalidate()