@Override
public Scriptable registerExports(Context cx, Scriptable scope, NodeRuntime runner)
throws InvocationTargetException, IllegalAccessException, InstantiationException
{
ScriptRunner internalRunner = (ScriptRunner)runner;
internalRunner.require("stream", cx);
ScriptableObject.defineClass(scope, ProcessImpl.class, false, true);
ScriptableObject.defineClass(scope, ProcessModuleImpl.class);
ProcessModuleImpl exports = (ProcessModuleImpl)cx.newObject(scope, ProcessModuleImpl.CLASS_NAME);