C# 클래스 Rhino.Ast.GeneratorExpressionLoop

상속: ForInLoop
파일 보기 프로젝트 열기: hazzik/Rhino.Net 1 사용 예제들

공개 메소드들

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