15 lines
244 B
C++
15 lines
244 B
C++
#include "compiler/rule.h"
|
|
#include <memory>
|
|
|
|
namespace tree_sitter {
|
|
|
|
using std::ostream;
|
|
using std::string;
|
|
|
|
bool Rule::operator!=(const Rule &other) const {
|
|
return !this->operator==(other);
|
|
}
|
|
|
|
Rule::~Rule() {}
|
|
|
|
} // namespace tree_sitter
|