Click or drag to resize

PegBaseParserCreator Delegate

Represents a callback that creates parse tree nodes.

Namespace: Altaxo.Main.PegParser
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public delegate PegNode Creator(
	ECreatorPhase ePhase,
	PegNode parentOrCreated,
	int id
)

Parameters

ePhase  ECreatorPhase
The creation phase.
parentOrCreated  PegNode
The parent node or the node being completed.
id  Int32
The node identifier.

Return Value

PegNode
The created node, or .
See Also