Upsilon/Upsilon/BaseTypes/IIndexable.cs

16 lines
397 B
C#

using Upsilon.Evaluator;
using Upsilon.Text;
namespace Upsilon.BaseTypes
{
internal interface IIndexable
{
LuaType Get(Diagnostics diagnostics, TextSpan span, string s, EvaluationScope scope);
void Set(Diagnostics diagnostics, TextSpan span, string s, LuaType value);
}
internal interface IScopeOwner
{
EvaluationScope EvaluationScope { get; }
}
}