execution_context.dot 520 B

12345678910111213141516
  1. digraph {
  2. Node [shape="point"]
  3. Root -> ExecRoot [label="username"]
  4. ExecRoot -> Input [label="'input'"]
  5. ExecRoot -> LastInput [label="'last_input'"]
  6. ExecRoot -> Output [label="'output'"]
  7. ExecRoot -> LastOutput [label="'last_output'"]
  8. ExecRoot -> CurFrame [label="'frame'"]
  9. CurFrame -> Table [label="'symbols'"]
  10. CurFrame -> Inst [label="'IP'"]
  11. CurFrame -> EvalStack [label="evalstack'"]
  12. CurFrame -> Phase [label="'phase'"]
  13. CurFrame -> ReturnValue [label="'returnvalue'"]
  14. }