Engine.Defaults.cs 420 B

12345678910111213
  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 | ExperimentalESFeatures.RegExpDuplicateNamedCapturingGroups,
  9. Tolerant = false,
  10. };
  11. }