﻿namespace Jint.Parser
{
    public class ParserOptions
    {
        public string Source { get; set; }
        public bool Tokens { get; set; }
        public bool Comment { get; set; }
        public bool Tolerant { get; set; }
    }
}
