MParser/Parser/EvaluationScope.cs

10 lines
226 B
C#

using Parser.Objects;
using System.Collections.Generic;
namespace Parser
{
internal class EvaluationScope
{
public Dictionary<string, MObject> Variables { get; } = new Dictionary<string, MObject>();
}
}