1
0
silverbullet/webapp/syscalls/system.ts
2022-04-05 17:02:17 +02:00

20 lines
453 B
TypeScript

import { SysCallMapping } from "../../plugos/system";
import { Space } from "../spaces/space";
export function systemSyscalls(space: Space): SysCallMapping {
return {
"system.invokeFunction": async (
ctx,
env: string,
name: string,
...args: any[]
) => {
if (!ctx.plug) {
throw Error("No plug associated with context");
}
return space.invokeFunction(ctx.plug, env, name, args);
},
};
}