summaryrefslogtreecommitdiff
path: root/tnslc/compile/module.tnsl
blob: b33ae5843323ea3eba4e87cb50c75e85872cd272 (plain)
1
2
3
4
5
6
7
8
9
10
11
struct Module {
	~Module parent,
	utils.Vector vars
}

/; method Module
	/; init (~Module parent)
		self.parent = parent
		self.vars.init(1)
	;/
;/