@eagleoutice/flowr - v2.10.3
    Preparing search index...

    Interface ParseStepOutputSingleFile<T>

    interface ParseStepOutputSingleFile<T> {
        ".parse-meta"?: { tokenCount: number };
        filePath: string | undefined;
        parsed: T;
    }

    Type Parameters

    • T
    Index

    Properties

    ".parse-meta"?: { tokenCount: number }

    Additional meta information about the parse

    Type Declaration

    • ReadonlytokenCount: number

      The number of tokens in the AST

    filePath: string | undefined
    parsed: T

    The parsed AST of the R code as given by the R parse side