UNPKG

skynovel

Version:
15 lines 497 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class CallStack { constructor($fn = '', $idx = 0, $hArg = null) { this.$fn = $fn; this.$idx = $idx; this.$hArg = $hArg; this.toString = () => `[fn:${this.$fn}, idx:${this.$idx}, hArg:${this.$hArg}]`; } get fn() { return this.$fn; } get idx() { return this.$idx; } get hArg() { return this.$hArg; } } exports.CallStack = CallStack; //# sourceMappingURL=CallStack.js.map