C# Класс Rhino.Ast.Block

A block statement delimited by curly braces.
A block statement delimited by curly braces. The node position is the position of the open-curly, and the length extends to the position of the close-curly. Node type is Rhino.Token.BLOCK .
Block : { Statement* }
Наследование: AstNode
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
AddStatement ( AstNode statement ) : void

Alias for AstNode.AddChild(AstNode) .

Block ( ) : System.Text
Block ( int pos ) : System.Text
Block ( int pos, int len ) : System.Text
ToSource ( int depth ) : string
Visit ( NodeVisitor v ) : void

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

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

Alias for AstNode.AddChild(AstNode) .
public AddStatement ( AstNode statement ) : void
statement AstNode
Результат void

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

public Block ( ) : System.Text
Результат System.Text

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

public Block ( int pos ) : System.Text
pos int
Результат System.Text

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

public Block ( int pos, int len ) : System.Text
pos int
len int
Результат System.Text

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

public ToSource ( int depth ) : string
depth int
Результат string

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

public Visit ( NodeVisitor v ) : void
v NodeVisitor
Результат void