Rename ::yy::parser to ::Carbon::Parser. (#697)

Not only is this more consistent with our style rules, it lets us omit a lot of noisy qualifiers in parser.ypp
This commit is contained in:
Geoff Romer
2021-08-03 12:09:42 -07:00
committed by GitHub
parent 38eb2c0d2f
commit de91afcf25
4 changed files with 193 additions and 189 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ auto parse(const std::string& input_file_name)
std::optional<AST> parsed_input = std::nullopt;
ParseAndLexContext context(input_file_name);
auto parser = yy::parser(parsed_input, context);
auto parser = Parser(parsed_input, context);
if (tracing_output) {
parser.set_debug_level(1);
}