@eagleoutice/flowr
Version:
Static Dataflow Analyzer and Program Slicer for the R Programming Language
11 lines • 379 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Ternary = void 0;
// diverging from boolean | maybe requires explicit handling
var Ternary;
(function (Ternary) {
Ternary["Always"] = "always";
Ternary["Maybe"] = "maybe";
Ternary["Never"] = "never";
})(Ternary || (exports.Ternary = Ternary = {}));
//# sourceMappingURL=logic.js.map