Accessor renames on parser (#1135)

This commit is contained in:
Jon Meow
2022-03-15 13:24:15 -07:00
committed by GitHub
parent 16c6ba6bd1
commit afeb78d067
10 changed files with 121 additions and 122 deletions
+3 -3
View File
@@ -15,9 +15,9 @@ namespace {
// Not much to test here, so just verify that the API compiles and returns the
// data in the `.def` file.
#define CARBON_PARSE_NODE_KIND(Name) \
TEST(ParseNodeKindTest, Name) { \
EXPECT_EQ(#Name, ParseNodeKind::Name().GetName()); \
#define CARBON_PARSE_NODE_KIND(Name) \
TEST(ParseNodeKindTest, Name) { \
EXPECT_EQ(#Name, ParseNodeKind::Name().name()); \
}
#include "toolchain/parser/parse_node_kind.def"