UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

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