Files
2024-11-20 15:21:28 +01:00

20 lines
392 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Language.Lua
{
public partial class GroupExpr : BaseExpr
{
public override LuaValue Evaluate(LuaTable enviroment)
{
return this.Expr.Evaluate(enviroment);
}
public override Term Simplify()
{
return this.Expr.Simplify();
}
}
}