mirror of
https://github.com/open-goal/jak-project
synced 2026-06-20 08:13:33 -04:00
add config option for changing cond splitting behavior (#522)
This commit is contained in:
@@ -1255,6 +1255,14 @@ TEST(GoosSpecialForms, Quote) {
|
||||
}
|
||||
}
|
||||
|
||||
TEST(GoosSpecialForms, DoubleQuote) {
|
||||
Interpreter i;
|
||||
e(i, "(define x ''y)");
|
||||
EXPECT_EQ(e(i, "x"), "(quote y)");
|
||||
e(i, "(define x `'`y)");
|
||||
EXPECT_EQ(e(i, "x"), "(quote (quasiquote y))");
|
||||
}
|
||||
|
||||
TEST(GoosSpecialForms, QuasiQuote) {
|
||||
Interpreter i;
|
||||
e(i, "(define x 'y)");
|
||||
|
||||
Reference in New Issue
Block a user