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
파일 보기 프로젝트 열기: FlorianRappl/YAMP

공개 메소드들

메소드 설명
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.