UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

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