level.go 245 B

123456789101112131415161718
  1. package data
  2. import (
  3. "fw/cp"
  4. "fw/cp/node"
  5. "fw/rt2/scope"
  6. )
  7. type level struct {
  8. root node.Node
  9. k map[cp.ID]int
  10. v map[int]scope.Variable
  11. r map[int]scope.Ref
  12. l map[int]*level
  13. next int
  14. ready bool
  15. nested bool
  16. }