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