瀏覽代碼

Fix problem on C_stringLiteral for test 001

develop-theo
Sebeck10 2 年之前
父節點
當前提交
d63cda4774
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      tests-parsimony/001.c

+ 1
- 1
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(",");

Loading…
取消
儲存