using System;
using System.Collections.Generic;
using System.Text;
namespace SharpLua.AST
{
public partial class WhileStmt : Statement
{
///
/// The while Condition that is evaluated.
///
public Expr Condition;
///
/// The body of the code that is executed.
///
public Chunk Body;
}
}