Program.cs 508 B

1234567891011121314151617181920
  1. using System.Collections.Generic;
  2. namespace Jint.Parser.Ast
  3. {
  4. public class Program : Statement, IVariableScope
  5. {
  6. public Program()
  7. {
  8. VariableDeclarations = new List<VariableDeclaration>();
  9. }
  10. public ICollection<Statement> Body;
  11. public List<Comment> Comments;
  12. public List<Token> Tokens;
  13. public List<ParserError> Errors;
  14. public bool Strict;
  15. public IList<VariableDeclaration> VariableDeclarations { get; set; }
  16. }
  17. }