소스 검색

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

불러오는 중...
취소
저장