Table of Contents

Class ConcatenatedNodePair<L, R>

Namespace
OpenLanguage.SpreadsheetML.Formula.Ast
Assembly
OpenLanguage.dll
public class ConcatenatedNodePair<L, R> : ExpressionNode where L : ExpressionNode where R : ExpressionNode

Type Parameters

L
R
Inheritance
ConcatenatedNodePair<L, R>
Derived
Inherited Members

Constructors

ConcatenatedNodePair(L, R, List<Node>?, List<Node>?)

public ConcatenatedNodePair(L left, R right, List<Node>? leadingWhitespace = null, List<Node>? trailingWhitespace = null)

Parameters

left L
right R
leadingWhitespace List<Node>
trailingWhitespace List<Node>

Properties

Left

public L Left { get; set; }

Property Value

L

Precedence

Gets the operator precedence for this expression node.

public override int Precedence { get; }

Property Value

int

Right

public R Right { get; set; }

Property Value

R

Methods

Children<O>()

public override IEnumerable<O> Children<O>() where O : Node

Returns

IEnumerable<O>

Type Parameters

O

ReplaceChild(int, Node)

public override Node? ReplaceChild(int index, Node replacement)

Parameters

index int
replacement Node

Returns

Node

ToRawString()

Renders the core content of the node without its own leading/trailing whitespace.

public override string ToRawString()

Returns

string

The raw string representation of this node's specific content.