using System; using System.Collections.Generic; using Esprima.Ast; using Jint.Native; namespace Jint.Runtime.Debugger { public class DebugInformation : EventArgs { public Stack CallStack { get; set; } public Statement CurrentStatement { get; set; } public long CurrentMemoryUsage { get; set; } public Dictionary Locals { get; set; } public Dictionary Globals { get; set; } } }