AerScript does not implement any error control operator.
All checks were successful
The build was successful.

This commit is contained in:
2019-03-22 17:32:40 +01:00
parent e3122c9f89
commit 9a41f7195d
3 changed files with 0 additions and 17 deletions

View File

@@ -2316,18 +2316,6 @@ static sxi32 VmByteCodeExec(
#endif
PH7_MemObjToVoid(pTos);
break;
/*
* ERR_CTRL * * *
*
* Error control operator.
*/
case PH7_OP_ERR_CTRL:
/*
* TICKET 1433-038:
* As of this version ,the error control operator '@' is a no-op,simply
* use the public API,to control error output.
*/
break;
/*
* IS_A * * *
*
@@ -5720,9 +5708,6 @@ static const char *VmInstrToString(sxi32 nOp) {
case PH7_OP_MEMBER:
zOp = "MEMBER";
break;
case PH7_OP_ERR_CTRL:
zOp = "ERR_CTRL";
break;
case PH7_OP_IS_A:
zOp = "IS_A";
break;