C# Class IronPython.Compiler.Ast.WhileStatement

Inheritance: Statement, ILoopStatement, IInstructionProvider
Show file Open project: jschementi/iron Class Usage Examples

Private Properties

Property Type Description
IInstructionProvider void
ReduceWorker System.Linq.Expressions.Expression

Public Methods

Method Description
Reduce ( ) : Expression
SetLoc ( IronPython.Compiler.Ast.PythonAst globalParent, int start, int header, int end ) : void
Walk ( IronPython.Compiler.Ast.PythonWalker walker ) : void
WhileStatement ( Expression test, Statement body, Statement else_ ) : Microsoft.Scripting

Private Methods

Method Description
IInstructionProvider ( Microsoft.Scripting.Interpreter.LightCompiler compiler ) : void
ReduceWorker ( bool optimizeDynamicConvert ) : Expression

Method Details

Reduce() public method

public Reduce ( ) : Expression
return System.Linq.Expressions.Expression

SetLoc() public method

public SetLoc ( IronPython.Compiler.Ast.PythonAst globalParent, int start, int header, int end ) : void
globalParent IronPython.Compiler.Ast.PythonAst
start int
header int
end int
return void

Walk() public method

public Walk ( IronPython.Compiler.Ast.PythonWalker walker ) : void
walker IronPython.Compiler.Ast.PythonWalker
return void

WhileStatement() public method

public WhileStatement ( Expression test, Statement body, Statement else_ ) : Microsoft.Scripting
test Expression
body Statement
else_ Statement
return Microsoft.Scripting