C# Class Rhino.Ast.EmptyStatement

AST node for an empty statement.
AST node for an empty statement. Node type is Rhino.Token.EMPTY .

Inheritance: AstNode
Show file Open project: hazzik/Rhino.Net

Public Methods

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

Visits this node.

Visits this node. There are no children.

Method Details

EmptyStatement() public method

public EmptyStatement ( ) : System.Text
return System.Text

EmptyStatement() public method

public EmptyStatement ( int pos ) : System.Text
pos int
return System.Text

EmptyStatement() public method

public EmptyStatement ( int pos, int len ) : System.Text
pos int
len int
return System.Text

ToSource() public method

public ToSource ( int depth ) : string
depth int
return string

Visit() public method

Visits this node.
Visits this node. There are no children.
public Visit ( NodeVisitor v ) : void
v NodeVisitor
return void