Files
vat-api.eu/node_modules/unenv/dist/runtime/node/internal/vm/script.mjs
2026-02-13 22:02:30 +01:00

16 lines
492 B
JavaScript

import { createNotImplementedError } from "../../../_internal/utils.mjs";
export class Script {
runInContext(contextifiedObject, options) {
throw createNotImplementedError("Script.runInContext");
}
runInNewContext(contextObject, options) {
throw createNotImplementedError("Script.runInNewContext");
}
runInThisContext(options) {
throw createNotImplementedError("Script.runInThisContext");
}
createCachedData() {
throw createNotImplementedError("Script.createCachedData");
}
}