blob: b5fd3c657c6cf912d99cf84d50b68530bbeebe27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
--[[
This module implements functions that handle scoping rules
]]
local scope = {}
function scope.lineno (s, i)
if i == 1 then return 1, 1 end
local l, lastline = 0, ""
s = s:sub(1, i) .. "\n"
for line in s:gmatch("[^\n]*[\n]") do
l = l + 1
lastline = line
end
local c = lastline:len() - 1
return l, c ~= 0 and c or 1
end
function scope.new_scope (env)
if not env.scope then
env.scope = 0
else
env.scope = env.scope + 1
end
local scope = env.scope
env.maxscope = scope
env[scope] = {}
env[scope]["label"] = {}
env[scope]["local"] = {}
env[scope]["goto"] = {}
end
function scope.begin_scope (env)
env.scope = env.scope + 1
end
function scope.end_scope (env)
env.scope = env.scope - 1
end
function scope.new_function (env)
if not env.fscope then
env.fscope = 0
else
env.fscope = env.fscope + 1
end
local fscope = env.fscope
env["function"][fscope] = {}
end
function scope.begin_function (env)
env.fscope = env.fscope + 1
end
function scope.end_function (env)
env.fscope = env.fscope - 1
end
function scope.begin_loop (env)
if not env.loop then
env.loop = 1
else
env.loop = env.loop + 1
end
end
function scope.end_loop (env)
env.loop = env.loop - 1
end
function scope.insideloop (env)
return env.loop and env.loop > 0
end
return scope
|