﻿using System;
using System.Collections.Generic;
using System.Text;

namespace JLGames.RocketDriver.CSharp.Languages.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();
        }
    }
}
