C# Class Rhino.Ast.EmptyExpression

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

To create an empty statement, wrap it with an ExpressionStatement .

Inheritance: AstNode
Afficher le fichier Open project: hazzik/Rhino.Net Class Usage Examples

Méthodes publiques

Méthode Description
EmptyExpression ( ) : Rhino
EmptyExpression ( int pos ) : Rhino
EmptyExpression ( int pos, int len ) : Rhino
ToSource ( int depth ) : string
Visit ( NodeVisitor v ) : void

Visits this node.

Visits this node. There are no children.

Method Details

EmptyExpression() public méthode

public EmptyExpression ( ) : Rhino
Résultat Rhino

EmptyExpression() public méthode

public EmptyExpression ( int pos ) : Rhino
pos int
Résultat Rhino

EmptyExpression() public méthode

public EmptyExpression ( int pos, int len ) : Rhino
pos int
len int
Résultat Rhino

ToSource() public méthode

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

Visit() public méthode

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