Merge 'pass' node into existing ASTKeyword node type

This commit is contained in:
Michael Hansen
2019-10-08 13:12:31 -07:00
parent c928df906b
commit 8713b3b05f
3 changed files with 7 additions and 10 deletions

View File

@@ -52,7 +52,7 @@ const char* ASTCompare::op_str() const
const char* ASTKeyword::word_str() const
{
static const char* s_word_strings[] = {
"break", "continue"
"pass", "break", "continue"
};
return s_word_strings[key()];
}