2025-07-08 10:46:31 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace Language.Lua
|
|
|
|
|
{
|
|
|
|
|
public abstract partial class Statement
|
|
|
|
|
{
|
|
|
|
|
public abstract LuaValue Execute(LuaTable enviroment, out bool isBreak);
|
|
|
|
|
}
|
|
|
|
|
}
|