UNPKG

bds.js

Version:

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

13 lines (12 loc) 261 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Bag = void 0; class Bag { constructor(runtime) { this.runtime = runtime; this.throwed = null; } addTrace() { } } exports.Bag = Bag;