$Assertions

From Lazarus wiki
Revision as of 13:32, 11 February 2021 by Kai Burghardt (talk | contribs) (add →‎see also: to PG)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Deutsch (de) English (en)


Back to local compiler directives.


The local compiler directive $C or $ASSERTIONS:

  • is used for error detection;
  • determines whether an expression is compiled or not. If the directive is active, then the Assert expression is compiled.

Examples:

...
{$ASSERTIONS ON} 
...
Assert(BooleanExpression, AssertMessage);
...
...
{$C ON} 
...
Assert(BooleanExpression);
...

If the BooleanExpression is false, an optional error message (AssertMessage) is output with the file name, the line number and the address and the program aborts with Runtime error 227. If BooleanExpression is true, program execution continues normally. If assertions are not enabled at compile time, the Assert routine does nothing, and no code is generated for the Assert call.

see also