aboutsummaryrefslogtreecommitdiff
path: root/src/bun.js/api/transpiler.classes.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/bun.js/api/transpiler.classes.ts')
-rw-r--r--src/bun.js/api/transpiler.classes.ts41
1 files changed, 0 insertions, 41 deletions
diff --git a/src/bun.js/api/transpiler.classes.ts b/src/bun.js/api/transpiler.classes.ts
deleted file mode 100644
index f016a1844..000000000
--- a/src/bun.js/api/transpiler.classes.ts
+++ /dev/null
@@ -1,41 +0,0 @@
-import { define } from "../scripts/class-definitions";
-
-export default [
- define({
- name: "Transpiler",
- construct: true,
- finalize: true,
- hasPendingActivity: false,
- configurable: false,
- klass: {},
- JSType: "0b11101110",
- proto: {
- scanImports: {
- fn: "scanImports",
- length: 2,
- },
- scan: {
- fn: "scan",
- length: 2,
- },
- transform: {
- fn: "transform",
- length: 2,
- },
- transformSync: {
- fn: "transformSync",
- length: 2,
- },
- },
- custom: {
- onLoadPlugins: {
- extraHeaderIncludes: ["BunPlugin.h"],
- impl: "JSTranspiler+BunPlugin-impl.h",
- type: `WTF::Vector<std::unique_ptr<BunPlugin::OnLoad>>`,
- },
- onResolvePlugins: {
- type: `WTF::Vector<std::unique_ptr<BunPlugin::OnResolve>>`,
- },
- },
- }),
-];