Engine.Defaults.cs 538 B

123456789101112131415
  1. namespace Jint;
  2. public partial class Engine
  3. {
  4. internal const bool FoldConstantsOnPrepareByDefault = true;
  5. internal static readonly ParserOptions BaseParserOptions = ParserOptions.Default with
  6. {
  7. EcmaVersion = EcmaVersion.ES2023,
  8. ExperimentalESFeatures = ExperimentalESFeatures.ImportAttributes
  9. | ExperimentalESFeatures.RegExpDuplicateNamedCapturingGroups
  10. | ExperimentalESFeatures.ExplicitResourceManagement,
  11. Tolerant = false,
  12. };
  13. }