TCodeTryFinallyStatement.Create Constructor
Creates a try-finally statement with the specified body and finally statements.
Syntax
Unit: Bcl.Code.MetaClasses
constructor TCodeTryFinallyStatement.Create(AStatements: TArray<TCodeStatement>; AFinallyStatements: TArray<TCodeStatement>);
Parameters
| <-> | Parameter | Type | Description |
|---|---|---|---|
| AStatements | TArray<TCodeStatement> | The statements in the try block. | |
| AFinallyStatements | TArray<TCodeStatement> | The statements in the finally block. |