Aardvark.Base


TextParser

Constructors

ConstructorDescription
new()
Signature: unit -> unit

Instance members

Instance memberDescription
Parse(text, rootState, rootNode)
Signature: (text:Text * rootState:ParserState<'TNode> * rootNode:'TNode) -> unit
Type parameters: 'TNode
Parse(state, node)
Signature: (state:ParserState<'TNode> * node:'TNode) -> unit
Type parameters: 'TNode

Parse a part of the input into the supplied node. This function can be called to implement recursive descent.

Fork me on GitHub