Lines Matching defs:parser
31 // parser //
36 /// the parser read `{` and started to process a JSON object
38 /// the parser read `}` and finished processing a JSON object
40 /// the parser read `[` and started to process a JSON array
42 /// the parser read `]` and finished processing a JSON array
44 /// the parser read a key of a value in an object
46 /// the parser finished reading a JSON value
57 This class implements a recursive descent parser.
60 class parser
70 /// a parser reading from an input adapter
71 explicit parser(InputAdapterType&& adapter,
84 @brief public parser interface