Compiler performance improvements and error clean-up (#782)

* compiler cleanup and error improvement

* fix test
This commit is contained in:
water111
2021-08-24 22:15:26 -04:00
committed by GitHub
parent e7b9ad5801
commit 7a5562106e
29 changed files with 462 additions and 264 deletions
+1 -3
View File
@@ -349,8 +349,6 @@ TEST(GoosReader, TextDb) {
.as_pair()
->cdr.as_pair()
->car;
std::string expected = "text from " +
file_util::get_file_path({"test", "test_data", "test_reader_file0.gc"}) +
", line: 5\n(1 2 3 4)\n";
std::string expected = "test/test_data/test_reader_file0.gc, line: 5\n(1 2 3 4)\n ^\n";
EXPECT_EQ(expected, reader.db.get_info_for(result));
}