C# Класс YAMP.TreeExpression

This is the abstract base class for expressions that contain other expressions (and operators), i.e. for containing a container expressions.
Наследование: ContainerExpression
Показать файл Открыть проект

Открытые методы

Метод Описание
RegisterElement ( IElementMapping elementMapping ) : void

Registers the element.

TreeExpression ( )

Creates a new instance

TreeExpression ( ContainerExpression child, ParseEngine engine )

Creates a new instance.

TreeExpression ( ContainerExpression child, QueryContext query, int line, int column )

Creates a new instance with some parameters.

Описание методов

RegisterElement() публичный Метод

Registers the element.
public RegisterElement ( IElementMapping elementMapping ) : void
elementMapping IElementMapping
Результат void

TreeExpression() публичный Метод

Creates a new instance
public TreeExpression ( )

TreeExpression() публичный Метод

Creates a new instance.
public TreeExpression ( ContainerExpression child, ParseEngine engine )
child ContainerExpression The child to add.
engine ParseEngine The engine that has been used.

TreeExpression() публичный Метод

Creates a new instance with some parameters.
public TreeExpression ( ContainerExpression child, QueryContext query, int line, int column )
child ContainerExpression The child to add.
query QueryContext The associated query context.
line int The line where the tree expression starts.
column int The column in the line where the tree exp. starts.