[decompiler] Working toward bsp (#717)

* clean up

* before int to float stuff

* before trying to eliminate the separate read and write maps

* partial fix for register issues

* add missing include
This commit is contained in:
water111
2021-07-25 15:30:37 -04:00
committed by GitHub
parent 38c97481e7
commit 2b6684aa5c
76 changed files with 5695 additions and 514 deletions
+3
View File
@@ -1102,6 +1102,8 @@ TEST(GoosObject, String) {
Object obj2 = StringObject::make_new("test2");
Object obj3 = StringObject::make_new("test1");
Object obj4 = StringObject::make_new("test-with\"quote");
EXPECT_TRUE(obj1.is_string());
EXPECT_TRUE(obj1 == obj3);
@@ -1112,6 +1114,7 @@ TEST(GoosObject, String) {
EXPECT_EQ(obj1.print(), "\"test1\"");
EXPECT_EQ(obj1.inspect(), "[string] \"test1\"\n");
EXPECT_EQ(obj4.print(), "\"test-with\\\"quote\"");
}
/*!