15 lines
317 B
C#
15 lines
317 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Language.Lua
|
|||
|
{
|
|||
|
public partial class DoStmt : Statement
|
|||
|
{
|
|||
|
public override LuaValue Execute(LuaTable enviroment, out bool isBreak)
|
|||
|
{
|
|||
|
return this.Body.Execute(enviroment, out isBreak);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|