add asserts for points in language_specs

This commit is contained in:
joshvera 2015-12-02 17:29:10 -05:00
parent 2df2b58d3e
commit 883bb87e29
2 changed files with 12 additions and 9 deletions

View file

@ -1,5 +1,6 @@
#include "runtime/runtime_spec_helper.h"
#include "runtime/helpers/tree_helpers.h"
#include "runtime/helpers/point_helpers.h"
extern "C" TSLanguage * ts_language_json();
@ -339,12 +340,3 @@ describe("Node", []() {
});
END_TEST
bool operator==(const TSPoint &left, const TSPoint &right) {
return left.row == right.row && left.column == right.column;
}
std::ostream &operator<<(std::ostream &stream, const TSPoint &point) {
return stream << "{" << point.row << ", " << point.column << "}";
}