PathParser constructor

PathParser(
  1. PathBuilder builder,
  2. String source
)

Create a parser to parse source. It will call the appropriate methods on builder to build a result.

Implementation

PathParser(PathBuilder builder, String source)
    : _hidden = RealPathParser(builder, source);