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

AST node for a single 'for (foo in bar)' loop construct in a JavaScript 1.7 Array comprehension.
AST node for a single 'for (foo in bar)' loop construct in a JavaScript 1.7 Array comprehension. This node type is almost equivalent to a ForInLoop , except that it has no body statement. Node type is Rhino.Token.FOR .

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

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

Метод Описание
ArrayComprehensionLoop ( ) : System
ArrayComprehensionLoop ( int pos ) : System
ArrayComprehensionLoop ( int pos, int len ) : System
GetBody ( ) : AstNode

Returns null for loop body

SetBody ( AstNode body ) : void

Throws an exception on attempts to set the loop body.

Throws an exception on attempts to set the loop body.

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.

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

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

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

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

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

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

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

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

Returns null for loop body
public GetBody ( ) : AstNode
Результат AstNode

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

Throws an exception on attempts to set the loop body.
Throws an exception on attempts to set the loop body.
System.NotSupportedException
public SetBody ( AstNode body ) : void
body AstNode loop body
Результат 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