[PATCH] D36702: Make Parser::Consume*Token methods public.

2018-02-15 Thread Frederich Munch via Phabricator via cfe-commits
marsupial added a comment. Ping. https://reviews.llvm.org/D36702 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[PATCH] D36702: Make Parser::Consume*Token methods public.

2017-08-14 Thread Frederich Munch via Phabricator via cfe-commits
marsupial created this revision. The fix in r303372 exposed a problem when using **Parser::ConsumeToken** from client code in DEBUG. **ConsumeToken** will assert for all **isTokenSpecial()** cases, but there is no way to call the proper method. The isToken methods are just convenient. https:/