Rename Character -> CharacterSet, CharacterMatch -> CharacterRange

This commit is contained in:
Max Brunsfeld 2014-02-03 13:05:51 -08:00
parent 716a4a4259
commit 8cce11a52a
16 changed files with 98 additions and 95 deletions

View file

@ -13,7 +13,7 @@ namespace tree_sitter {
public:
transition_map<Rule, Rule> value;
void visit(const Character *rule) {
void visit(const CharacterSet *rule) {
value = transition_map<Rule, Rule>({{ rule->copy(), blank() }});
}