DebugInformation.cs 459 B

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