Microsoft.JScript.While.While C# (CSharp) Method

While() private method

private While ( Context context, AST condition, AST body ) : System
context Context
condition AST
body AST
return System
      internal While(Context context, AST condition, AST body)
        : base(context) {
        this.condition = condition;
        this.body = body;
        this.completion = new Completion();
      }