Rename rules::RuleVisitor -> Visitor

This commit is contained in:
Max Brunsfeld 2013-12-19 23:16:13 -08:00
parent 6f444fcc79
commit c10bcf4fab
22 changed files with 31 additions and 31 deletions

View file

@ -16,7 +16,7 @@ namespace tree_sitter {
return string("(string '") + value + "')";
}
void String::accept(RuleVisitor &visitor) const {
void String::accept(Visitor &visitor) const {
visitor.visit(this);
}
}