Lines Matching full:x
17 x = shared.count
18 mg.write("Previous count was " .. tostring(x) .. " (type " .. type(x) .. ")\n")
19 x = x or 0
20 x = x + 1
21 shared.count = x
22 mg.write("Store new count " .. tostring(x) .. " (type " .. type(x) .. ")\n")
23 x = shared.count
24 mg.write("New count is " .. tostring(x) .. " (type " .. type(x) .. ")\n")
28 x = shared.name
29 mg.write("Previous name was " .. tostring(x) .. " (type " .. type(x) .. ")\n")
30 x = x or ""
31 l = string.len(x) % 26
32 x = x .. string.char(string.byte("a") + l)
33 shared.name = x
34 mg.write("Store new name " .. tostring(x) .. " (type " .. type(x) .. ")\n")
35 x = shared.name
36 mg.write("New name is " .. tostring(x) .. " (type " .. type(x) .. ")\n")
41 x = shared.condition
42 mg.write("Previous condition was " .. tostring(x) .. " (type " .. type(x) .. ")\n")
43 x = not x
44 shared.condition = x
45 mg.write("Store new condition " .. tostring(x) .. " (type " .. type(x) .. ")\n")
46 x = shared.condition
47 mg.write("New condition is " .. tostring(x) .. " (type " .. type(x) .. ")\n")
54 x = shared[i]
55 mg.write(tostring(x) .. " (" .. type(x):sub(1,1) .. ") ")
63 x = shared[i]
64 mg.write(tostring(x) .. " (" .. type(x):sub(1,1) .. ") ")
71 x = shared[true]
74 .. tostring(x) .. " (type " .. type(x) .. ") / "
76 x = not x
77 y = not x
78 shared[true] = x
81 .. tostring(x) .. " (type " .. type(x) .. ") / "
95 if not shared.x then
96 shared.x = 0
99 mg.write("__inc(x) = " .. shared.__inc("x") .. "\n")
104 if not shared.x then
105 shared.x = 0
108 mg.write("__add(x, 10) = " .. shared.__add("x", 10) .. "\n")