@eagleoutice/flowr
Version:
Static Dataflow Analyzer and Program Slicer for the R Programming Language
13 lines • 526 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CascadeAction = void 0;
var CascadeAction;
(function (CascadeAction) {
/** The action is to start the cascade */
CascadeAction["Stop"] = "stop";
/** The action is to continue the cascade */
CascadeAction["Continue"] = "continue";
/** The action is to skip the current node */
CascadeAction["Skip"] = "skip";
})(CascadeAction || (exports.CascadeAction = CascadeAction = {}));
//# sourceMappingURL=cascade-action.js.map