1234567891011121314151617181920 |
- using System.Collections.Generic;
- namespace Jint.Parser.Ast
- {
- public class Program : Statement, IVariableScope
- {
- public Program()
- {
- VariableDeclarations = new List<VariableDeclaration>();
- }
- public ICollection<Statement> Body;
- public List<Comment> Comments;
- public List<Token> Tokens;
- public List<ParserError> Errors;
- public bool Strict;
- public IList<VariableDeclaration> VariableDeclarations { get; set; }
- }
- }
|