UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

19 lines 493 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.RRepeatLoop = void 0; const model_1 = require("../model"); const type_1 = require("../type"); /** * Helper for working with {@link RRepeatLoop} AST nodes. */ exports.RRepeatLoop = { ...model_1.RNode, name: 'RRepeatLoop', /** * Type guard for RRepeatLoop nodes. */ is(node) { return node?.type === type_1.RType.RepeatLoop; } }; //# sourceMappingURL=r-repeat-loop.js.map