DebugInformation.cs 475 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using Esprima.Ast;
  4. using Jint.Native;
  5. namespace Jint.Runtime.Debugger
  6. {
  7. public class DebugInformation : EventArgs
  8. {
  9. public Stack<string> CallStack { get; set; }
  10. public Statement CurrentStatement { get; set; }
  11. public long CurrentMemoryUsage { get; set; }
  12. public Dictionary<string, JsValue> Locals { get; set; }
  13. public Dictionary<string, JsValue> Globals { get; set; }
  14. }
  15. }