diff --git a/simulator/src/vm/vm.ts b/simulator/src/vm/vm.ts index 98edd8e9c..6d1c3b3ab 100644 --- a/simulator/src/vm/vm.ts +++ b/simulator/src/vm/vm.ts @@ -125,19 +125,6 @@ const BOOTSTRAP: VmFunction = { ], }; -function BootstrapFor(name: string): VmFunction { - return { - name: "__bootstrap", - nVars: 0, - opBase: 0, - labels: {}, - operations: [ - { op: "function", name: "__bootstrap", nVars: 0 }, - { op: "call", name, nArgs: 0 }, - ], - }; -} - const END_LABEL = "__END"; const SYS_INIT: VmFunction = { name: "Sys.init",