Logo fantomas

MatchClauseNode Type

Example: `| pat when guard -> body` — a single arm of a `match` or `try…with` expression. The leading bar, guard (`when` clause), and arrow are all optional depending on context.

Constructors

Constructor Description

MatchClauseNode(bar, pattern, whenExpr, arrow, bodyExpr, range)

Full Usage: MatchClauseNode(bar, pattern, whenExpr, arrow, bodyExpr, range)

Parameters:
Returns: MatchClauseNode
bar : SingleTextNode option
pattern : Pattern
whenExpr : Expr option
arrow : SingleTextNode
bodyExpr : Expr
range : range
Returns: MatchClauseNode

Instance members

Instance member Description

this.Arrow

Full Usage: this.Arrow

Returns: SingleTextNode
Returns: SingleTextNode

this.Bar

Full Usage: this.Bar

Returns: SingleTextNode option
Returns: SingleTextNode option

this.BodyExpr

Full Usage: this.BodyExpr

Returns: Expr
Returns: Expr

this.Pattern

Full Usage: this.Pattern

Returns: Pattern
Returns: Pattern

this.WhenExpr

Full Usage: this.WhenExpr

Returns: Expr option
Returns: Expr option

Inherited members

Inherited from NodeBase

Instance members

Instance member Description

this.AddAfter

Full Usage: this.AddAfter

Parameters:
triviaNode : TriviaNode

this.AddBefore

Full Usage: this.AddBefore

Parameters:
triviaNode : TriviaNode

this.AddCursor

Full Usage: this.AddCursor

Parameters:
cursor : pos

this.AppendToStringWithIndent

Full Usage: this.AppendToStringWithIndent

Parameters:
sb : StringBuilder
depth : int

this.ToStringWithIndent

Full Usage: this.ToStringWithIndent

Parameters:
    depth : int

Returns: string
depth : int
Returns: string

this.Children

Full Usage: this.Children

Returns: Node array
Modifiers: abstract
Returns: Node array

this.HasContentAfter

Full Usage: this.HasContentAfter

Returns: bool
Returns: bool

this.Range

Full Usage: this.Range

Returns: range
Returns: range

this.TryGetCursor

Full Usage: this.TryGetCursor

Returns: pos option
Returns: pos option

this.ContentBefore

Full Usage: this.ContentBefore

Returns: TriviaNode seq
Returns: TriviaNode seq

this.ContentAfter

Full Usage: this.ContentAfter

Returns: TriviaNode seq
Returns: TriviaNode seq

this.HasContentBefore

Full Usage: this.HasContentBefore

Returns: bool
Returns: bool

Type something to start searching.