summaryrefslogtreecommitdiff
path: root/tnslc/compile/scope.tnsl
blob: f95d0fd82819087f052dcd24c9455e881890ef1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

struct Scope {
  ~uint8 name,
  utils.Vector
    reg_vars,
    stack_vars,
  int
    c_const,
    c_sub
}

/; method Scope
;/