14 lines
254 B
C#
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; }
|
|
}
|
|
} |