Statistics on skipped files, the time required, and more.

  • extractUsageStatistics
  • initialMetaStatistics
interface MetaStatistics {
    failedRequests: (RParseRequestFromFile | RParseRequestFromText)[];
    lines: number[][];
    numberOfNormalizedNodes: number[];
    processingTimeMs: number[];
    successfulParsed: number;
}

Properties

All failed requests (e.g., if they can not be converted to XML)

lines: number[][]

Number of lines with each individual line length consumed for each request

numberOfNormalizedNodes: number[]

The number of nodes in the normalized AST

processingTimeMs: number[]

The processing time for each request

successfulParsed: number

The number of requests that were parsed successfully