| 51 | } |
| 52 | |
| 53 | bool ConsumeListPrefix(StringPiece* sp) { |
| 54 | return Scanner(*sp) |
| 55 | .OneLiteral("list") |
| 56 | .AnySpace() |
| 57 | .OneLiteral("(") |
| 58 | .AnySpace() |
| 59 | .GetResult(sp); |
| 60 | } |
| 61 | |
| 62 | bool ConsumeQuotedString(char quote_ch, StringPiece* sp, StringPiece* out) { |
| 63 | const string quote_str(1, quote_ch); |
no test coverage detected