Program.cs 274 B

1234567891011121314
  1. using System.Collections.Generic;
  2. namespace Jint.Parser.Ast
  3. {
  4. public class Program : Statement
  5. {
  6. public ICollection<Statement> Body;
  7. public List<Comment> Comments;
  8. public List<Token> Tokens;
  9. public List<ParserError> Errors;
  10. }
  11. }