Prevent $base, $parent and $this from being unset.
ステータスチェックによりエラーが出ています
The build has failed.

このコミットが含まれているのは:
Rafal Kupiec 2019-05-29 13:45:38 +02:00
コミット a6f7c6d847
署名者: belliash
GPGキーID: 4E829243E0CFE6B4

ファイルの表示

@ -7580,6 +7580,10 @@ static int vm_builtin_unset(ph7_context *pCtx, int nArg, ph7_value **apArg) {
PH7_VmThrowError(pCtx->pVm, PH7_CTX_ERR, "Expecting a variable not a constant");
}
} else {
if(pObj->iFlags != MEMOBJ_VARIABLE) {
/* Throw an error */
PH7_VmThrowError(pCtx->pVm, PH7_CTX_ERR, "Expecting a variable not AerScript statement");
}
sxu32 nIdx = pObj->nIdx;
PH7_VmUnsetMemObj(&(*pVm), nIdx, FALSE);
}