C# Класс Mages.Core.Ast.Statements.WhileStatement

Represents a while statement.
Наследование: Mages.Core.Ast.Statements.BreakableStatement, IStatement
Показать файл Открыть проект

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

Метод Описание
Accept ( ITreeWalker visitor ) : void

Accepts the visitor by showing him around.

WhileStatement ( IExpression condition, IStatement body, TextPosition start )

Creates a new while statement.

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

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

Accepts the visitor by showing him around.
public Accept ( ITreeWalker visitor ) : void
visitor ITreeWalker The visitor walking the tree.
Результат void

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

Creates a new while statement.
public WhileStatement ( IExpression condition, IStatement body, TextPosition start )
condition IExpression
body IStatement
start TextPosition