using System.Collections.Generic; namespace Jint.Parser.Ast { /// /// Used to safe references to all variable delcarations in a specific scope. /// Hoisting. /// public interface IVariableScope { IList VariableDeclarations { get; set; } } public class VariableScope : IVariableScope { public VariableScope() { VariableDeclarations = new List(); } public IList VariableDeclarations { get; set; } } }