Merge branch 'repository' (metamachine stuff) and thus release R4

This commit is contained in:
20kdc 2018-06-03 20:51:07 +01:00
commit ae89024112
2 changed files with 10 additions and 6 deletions

View File

@ -124,8 +124,8 @@ vmComponent = {
return tk
end,
invoke = function (com, me, ...)
if not components[com] then error("no component " .. com) end
if not components[com][me] then error("no method " .. com .. "." .. me) end
if not components[com] then error("no such component") end
if not components[com][me] then error("no such method") end
return components[com][me](...)
end,
proxy = function (com)
@ -148,8 +148,11 @@ vmComponent = {
return components[com].type
end,
methods = function (com)
if not components[com] then
return nil, "no such component"
end
local mt = {}
for k, v in pairs(components[address]) do
for k, v in pairs(components[com]) do
if type(v) == "function" then
mt[k] = true
end
@ -164,10 +167,10 @@ vmComponent = {
end,
doc = function (address, method)
if not components[address] then
error("No such component " .. address)
error("no such component")
end
if not components[address][method] then
error("No such method " .. method)
return
end
return tostring(components[address][method])
end
@ -381,6 +384,7 @@ vmEnvironment = {
-- This is not exactly the same, but is very similar, to that of machine.lua,
-- differing mainly in how pullSignal timeout scheduling occurs.
coroutine = {
-- NOTE: I can't give you a definitive list from OC because OC (or OpenOS?) screws up a metatable!
yield = function (...)
return coroutine.yield(nil, ...)
end,

View File

@ -108,7 +108,7 @@ return {
},
["app-metamachine"] = {
desc = "Virtual machine",
v = 1,
v = 2,
deps = {
"neo",
"zzz-license-pd"