tree-sitter/src/compiler/rules/blank.h
2014-03-09 22:05:24 -07:00

21 lines
494 B
C++

#ifndef COMPILER_RULES_BLANK_H_
#define COMPILER_RULES_BLANK_H_
#include "compiler/rules/rule.h"
namespace tree_sitter {
namespace rules {
class Blank : public Rule {
public:
Blank();
bool operator==(const Rule& other) const;
size_t hash_code() const;
rule_ptr copy() const;
std::string to_string() const;
void accept(Visitor &visitor) const;
};
}
}
#endif // COMPILER_RULES_BLANK_H_