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
파일 보기 프로젝트 열기: hazzik/Rhino.Net 1 사용 예제들

공개 메소드들

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