UNPKG

@eagleoutice/flowr-dev

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

7 lines (6 loc) 453 B
import type { BasicQueryData } from '../../base-query-format'; import { type AbsintQuery, type AbsintQueryResult, type AbsintQueryType } from './absint-query-format'; /** * Executes the given abstract interpretation queries using the provided analyzer. */ export declare function executeAbsintQuery<AbsintType extends AbsintQueryType>({ analyzer }: BasicQueryData, queries: readonly AbsintQuery<AbsintType>[]): Promise<AbsintQueryResult<AbsintType>>;