C# Class 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* }
Inheritance: AstNode
Afficher le fichier Open project: hazzik/Rhino.Net Class Usage Examples

Méthodes publiques

Méthode Description
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

Method Details

AddStatement() public méthode

Alias for AstNode.AddChild(AstNode) .
public AddStatement ( AstNode statement ) : void
statement AstNode
Résultat void

Block() public méthode

public Block ( ) : System.Text
Résultat System.Text

Block() public méthode

public Block ( int pos ) : System.Text
pos int
Résultat System.Text

Block() public méthode

public Block ( int pos, int len ) : System.Text
pos int
len int
Résultat System.Text

ToSource() public méthode

public ToSource ( int depth ) : string
depth int
Résultat string

Visit() public méthode

public Visit ( NodeVisitor v ) : void
v NodeVisitor
Résultat void