Package com.google.common.labs.parse


package com.google.common.labs.parse
Parser combinator that's free from infinite loop or accidental left recursion

Package Specification

The code is developed and tested under Java 21.
  • Class
    Description
    Provides a fluent API for building an operator precedence grammar.
    A simple recursive descent parser combinator intended to parse simple grammars such as regex, csv format string patterns etc.
    A lazy parser, to be used for recursive grammars.
    Thrown if parsing failed.