15 lines
306 B
C#
15 lines
306 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Language.Lua
|
|
{
|
|
public partial class BreakStmt : Statement
|
|
{
|
|
public override LuaValue Execute(LuaTable enviroment, out bool isBreak)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|