Typehinting merge #50

已合并
belliash 2019-04-17 11:27:52 +02:00 将 298 次代码提交从 typehinting合并至 master
仅显示提交 e5fb7d625e 的更改 - 显示所有提交

查看文件

@@ -2616,8 +2616,10 @@ static sxi32 PH7_CompileVar(ph7_gen_state *pGen) {
}
if(pGen->pIn->nType == PH7_TK_SEMI) {
break;
} else {
} else if(pGen->pIn->nType & PH7_TK_COMMA) {
pGen->pIn++;
} else {
PH7_GenCompileError(&(*pGen), E_ERROR, pGen->pIn->nLine, "Unexpected token '%z'", &pGen->pIn->sData);
}
}
return SXRET_OK;