C# Class Dazzle.Query.DqlQueryReader

Dql syntax reader.
Mostra file Open project: kellabyte/Dazzle.NET Class Usage Examples

Public Methods

Method Description
DisplayTree ( ParseTreeNode node, int level ) : void

Outputs the abstract syntax tree for debugging.

DqlQueryReader ( Irony.Parsing.LanguageData languageData ) : System
Read ( string query, ParseTree &node ) : long

Reads a Dql query into an abstract syntax tree.

Method Details

DisplayTree() public method

Outputs the abstract syntax tree for debugging.
public DisplayTree ( ParseTreeNode node, int level ) : void
node ParseTreeNode The current node in the abstract syntax tree.
level int The current child level in the abstract syntax tree.
return void

DqlQueryReader() public method

public DqlQueryReader ( Irony.Parsing.LanguageData languageData ) : System
languageData Irony.Parsing.LanguageData
return System

Read() public method

Reads a Dql query into an abstract syntax tree.
public Read ( string query, ParseTree &node ) : long
query string Dql query.
node Irony.Parsing.ParseTree The current abstract syntax tree to construct.
return long