2015-09-03 17:49:20 -07:00
|
|
|
#include "compiler/rule.h"
|
2015-10-12 15:26:50 -07:00
|
|
|
#include <memory>
|
2013-11-10 14:24:25 -08:00
|
|
|
|
2013-11-12 08:17:19 -08:00
|
|
|
namespace tree_sitter {
|
2014-03-09 23:51:33 -07:00
|
|
|
|
2014-07-20 21:43:27 -07:00
|
|
|
using std::ostream;
|
|
|
|
|
using std::string;
|
2014-03-09 19:49:35 -07:00
|
|
|
|
2014-07-20 21:43:27 -07:00
|
|
|
bool Rule::operator!=(const Rule &other) const {
|
|
|
|
|
return !this->operator==(other);
|
|
|
|
|
}
|
2013-11-14 21:25:58 -08:00
|
|
|
|
2014-07-20 21:43:27 -07:00
|
|
|
Rule::~Rule() {}
|
|
|
|
|
|
|
|
|
|
} // namespace tree_sitter
|