From cfd73cec816cb73e0017cf306e133a7b0e5ae4eb Mon Sep 17 00:00:00 2001 From: dave caruso Date: Sat, 3 Jun 2023 00:36:05 -0400 Subject: fixes with hardcoded modules (#3182) * fixes with hardcoded modules * add make hardcoded to make dev * adjust this message * remove debugging logs * this * restore2 --- src/js/out/modules_dev/node/repl.js | 92 ------------------------------------- 1 file changed, 92 deletions(-) delete mode 100644 src/js/out/modules_dev/node/repl.js (limited to 'src/js/out/modules_dev/node/repl.js') diff --git a/src/js/out/modules_dev/node/repl.js b/src/js/out/modules_dev/node/repl.js deleted file mode 100644 index 849858f87..000000000 --- a/src/js/out/modules_dev/node/repl.js +++ /dev/null @@ -1,92 +0,0 @@ -function throwNotImplemented(feature, issue) { - throw hideFromStack(throwNotImplemented), new NotImplementedError(feature, issue); -} -function hideFromStack(...fns) { - for (let fn of fns) - Object.defineProperty(fn, "name", { - value: "::bunternal::" - }); -} - -class NotImplementedError extends Error { - code; - constructor(feature, issue) { - super(feature + " is not yet implemented in Bun." + (issue ? " Track the status & thumbs up the issue: https://github.com/oven-sh/bun/issues/" + issue : "")); - this.name = "NotImplementedError", this.code = "ERR_NOT_IMPLEMENTED", hideFromStack(NotImplementedError); - } -} - -// src/js/node/repl.ts -var REPLServer = function() { - throwNotImplemented("node:repl REPLServer"); -}, Recoverable = function() { - throwNotImplemented("node:repl Recoverable"); -}, start = function() { - throwNotImplemented("node:repl"); -}, REPL_MODE_SLOPPY = 0, REPL_MODE_STRICT = 1, repl = { - [Symbol.for("CommonJS")]: 0, - lines: [], - context: globalThis, - historyIndex: -1, - cursor: 0, - historySize: 1000, - removeHistoryDuplicates: !1, - crlfDelay: 100, - completer: () => { - throwNotImplemented("node:repl"); - }, - history: [], - _initialPrompt: "> ", - terminal: !0, - input: new Proxy({}, { - get() { - throwNotImplemented("node:repl"); - }, - has: () => !1, - ownKeys: () => [], - getOwnPropertyDescriptor: () => { - return; - }, - set() { - throwNotImplemented("node:repl"); - } - }), - line: "", - eval: () => { - throwNotImplemented("node:repl"); - }, - isCompletionEnabled: !0, - escapeCodeTimeout: 500, - tabSize: 8, - breakEvalOnSigint: !0, - useGlobal: !0, - underscoreAssigned: !1, - last: void 0, - _domain: void 0, - allowBlockingCompletions: !1, - useColors: !0, - output: new Proxy({}, { - get() { - throwNotImplemented("node:repl"); - }, - has: () => !1, - ownKeys: () => [], - getOwnPropertyDescriptor: () => { - return; - }, - set() { - throwNotImplemented("node:repl"); - } - }) -}; -export { - start, - repl, - repl as default, - Recoverable, - REPL_MODE_STRICT, - REPL_MODE_SLOPPY, - REPLServer -}; - -//# debugId=4E39AF2B5A08603C64756e2164756e21 -- cgit v1.2.3