20 lines
374 B
C#
20 lines
374 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Language.Lua
|
|||
|
{
|
|||
|
public partial class VarName : BaseExpr
|
|||
|
{
|
|||
|
public override LuaValue Evaluate(LuaTable enviroment)
|
|||
|
{
|
|||
|
return enviroment.GetValue(this.Name);
|
|||
|
}
|
|||
|
|
|||
|
public override Term Simplify()
|
|||
|
{
|
|||
|
return this;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|