Table of Contents

Class CssLineState

Namespace
SharpConsoleUI.Highlighting
Assembly
SharpConsoleUI.dll

Per-line parser state for the CSS highlighter (tracks open block comments).

public record CssLineState : SyntaxLineState, IEquatable<SyntaxLineState>, IEquatable<CssLineState>
Inheritance
CssLineState
Implements
Inherited Members
Extension Methods

Constructors

CssLineState(bool)

Per-line parser state for the CSS highlighter (tracks open block comments).

public CssLineState(bool InBlockComment = false)

Parameters

InBlockComment bool

True when the line begins inside an unterminated block comment.

Properties

InBlockComment

True when the line begins inside an unterminated block comment.

public bool InBlockComment { get; init; }

Property Value

bool