skEnableMessageBlock
skEnableMessageBlock(l_rulesg_exp1... ) =>g_result
Description
Re-enables reporting of one or more SKILL Lint messages that have been globally turned off within the body of this function only.
You can insert the call to this function inside that particular block of code being analyzed and SKILL Lint will recognize the call.
Arguments
|
One or more rules to ignore for all the code within the body of this function (that is, g_exp1 ...). |
|
Value Returned
|
The result of the last expression evaluated. It can be ignored. |
Examples
To disable the single SKILL Lint message for MEMBER1 from reporting (the parentheses around the message name can be omitted):
(procedure (aFunc a b)
(skEnableMessageBlock MEMBER1
(member a b)
(geOpen)
)
(member 1 a)
)
To re-enable reporting of the SKILL Lint messages for MEMBER1 and geOpen temporarily inside a particular block of code:
(procedure (aFunc a b)
(skEnableMessageBlock (MEMBER1 geOpen)
(member a b)
(geOpen)
)
(member 1 a)
)
Related Topics
Return to top