20 lines
392 B
C#
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();
|
|
}
|
|
}
|
|
}
|