Empty double-quoted string can be served as single-quoted string. Preparing for further changes in scope of #35.
Все проверки выполнены успешно
The build was successful.

Этот коммит содержится в:
Piotr Likoski 2018-08-06 16:03:22 +02:00
родитель dd239530d8
Коммит a8259e7dbc
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: D9556DDD74910B18

Просмотреть файл

@ -527,9 +527,8 @@ static sxi32 GenStateCompileString(ph7_gen_state *pGen) {
zIn = pStr->zString;
zEnd = &zIn[pStr->nByte];
if(zIn >= zEnd) {
/* Empty string,load NULL */
PH7_VmEmitInstr(pGen->pVm, PH7_OP_LOADC, 0, 0, 0, 0);
return SXRET_OK;
/* Empty string can be served as single-quoted string */
return PH7_CompileSimpleString(pGen, 0);
}
zCur = 0;
/* Compile the node */