CallStackItem.cs 359 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace MoonSharp.Interpreter.Execution.VM
  6. {
  7. public class CallStackItem
  8. {
  9. public int Debug_EntryPoint;
  10. public LRef[] Debug_Symbols;
  11. public int BasePointer;
  12. public int ReturnAddress;
  13. public RValue[] LocalScope;
  14. public ClosureContext ClosureScope;
  15. }
  16. }