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;
}

Methods