UNPKG

bds.js

Version:

A simple interpreter written to simulate and run BDScript Language in JavaScript

12 lines (11 loc) 266 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.RuntimeBag = void 0; class RuntimeBag { constructor() { this.traces = new Map(); } addTrace(parent, child) { } } exports.RuntimeBag = RuntimeBag;