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

    Interface RParseRequestProvider

    A provider for an RParseRequests that can be used, for example, to override source file parsing behavior in tests

    interface RParseRequestProvider {
        createRequest(path: string): RParseRequest;
        exists(path: string, ignoreCase: boolean): string | undefined;
    }
    Index

    Methods

    • returns the path if it exists, otherwise undefined

      Parameters

      • path: string
      • ignoreCase: boolean

      Returns string | undefined