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): undefined | string;
}

Methods

  • returns the path if it exists, otherwise undefined

    Parameters

    • path: string
    • ignoreCase: boolean

    Returns undefined | string