Files
Upsilon/Upsilon/BaseTypes/IIndexable.cs
2018-11-19 12:17:21 +01:00

14 lines
254 B
C#

using Upsilon.Evaluator;
namespace Upsilon.BaseTypes
{
internal interface IIndexable
{
LuaType Get(string s, EvaluationScope scope);
}
internal interface IScopeOwner
{
EvaluationScope EvaluationScope { get; }
}
}