C# Класс Rhino.Ast.GeneratorExpressionLoop

Наследование: ForInLoop
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Описание методов

GeneratorExpressionLoop() публичный Метод

public GeneratorExpressionLoop ( ) : System
Результат System

GeneratorExpressionLoop() публичный Метод

public GeneratorExpressionLoop ( int pos ) : System
pos int
Результат System

GeneratorExpressionLoop() публичный Метод

public GeneratorExpressionLoop ( int pos, int len ) : System
pos int
len int
Результат System

IsForEach() публичный Метод

Returns whether the loop is a for-each loop
public IsForEach ( ) : bool
Результат bool

SetIsForEach() публичный Метод

Sets whether the loop is a for-each loop
public SetIsForEach ( bool isForEach ) : void
isForEach bool
Результат void

ToSource() публичный Метод

public ToSource ( int depth ) : string
depth int
Результат string

Visit() публичный Метод

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
Результат void