using System;
using System.Collections.Generic;
using Esprima.Ast;
namespace Jint.Tests.Test262;
///
/// Custom state for Jint.
///
public static partial class State
{
///
/// Pre-compiled scripts for faster execution.
///
public static readonly Dictionary Sources = new(StringComparer.OrdinalIgnoreCase);
///
/// Time zone to use by default.
///
public static TimeZoneInfo TimeZone;
}