using System.Collections.Generic; namespace Jint.Parser.Ast { public class Program : Statement, IVariableScope { public Program() { VariableDeclarations = new List(); } public ICollection Body; public List Comments; public List Tokens; public List Errors; public bool Strict; public IList VariableDeclarations { get; set; } } }