C# Class Rhino.Ast.GeneratorExpressionLoop

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

Méthodes publiques

Méthode Description
GeneratorExpressionLoop ( ) : System
GeneratorExpressionLoop ( int pos ) : System
GeneratorExpressionLoop ( int pos, int len ) : System
IsForEach ( ) : bool

Returns whether the loop is a for-each loop

SetIsForEach ( bool isForEach ) : void

Sets whether the loop is a for-each loop

ToSource ( int depth ) : string
Visit ( NodeVisitor v ) : void

Visits the iterator expression and the iterated object expression.

Visits the iterator expression and the iterated object expression. There is no body-expression for this loop type.

Method Details

GeneratorExpressionLoop() public méthode

public GeneratorExpressionLoop ( ) : System
Résultat System

GeneratorExpressionLoop() public méthode

public GeneratorExpressionLoop ( int pos ) : System
pos int
Résultat System

GeneratorExpressionLoop() public méthode

public GeneratorExpressionLoop ( int pos, int len ) : System
pos int
len int
Résultat System

IsForEach() public méthode

Returns whether the loop is a for-each loop
public IsForEach ( ) : bool
Résultat bool

SetIsForEach() public méthode

Sets whether the loop is a for-each loop
public SetIsForEach ( bool isForEach ) : void
isForEach bool
Résultat void

ToSource() public méthode

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

Visit() public méthode

Visits the iterator expression and the iterated object expression.
Visits the iterator expression and the iterated object expression. There is no body-expression for this loop type.
public Visit ( NodeVisitor v ) : void
v NodeVisitor
Résultat void