From d63cda4774e18752436200f9073cd120933b1837 Mon Sep 17 00:00:00 2001 From: Sebeck10 Date: Mon, 14 Nov 2022 15:40:32 +0900 Subject: [PATCH] Fix problem on C_stringLiteral for test 001 --- tests-parsimony/001.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests-parsimony/001.c b/tests-parsimony/001.c index c085a6a..c2c5bec 100644 --- a/tests-parsimony/001.c +++ b/tests-parsimony/001.c @@ -1,7 +1,7 @@ @{ newObject(type, fields) { fields.__proto__ = type; fields } newCint(text) { newObject(C_int, { text: text }) } - newCstring(text) { newObject(C_string, { text: "\""+text+"\"" }) } + newCstring(text) { newObject(C_stringLiteral, { text: "\""+text+"\"" }) } newCinitializer(list) { { __proto__: C_initializer, leftCurly: lcurly, initList: list, rightCurly: rcurly } } newToken(text) { { __proto__: Token, text: text } } comma = newToken(",");