|
Aegis
4.25.D505
|
#include <for.h>
Public Member Functions | |
| virtual | ~rpt_stmt_for () |
Static Public Member Functions | |
| static rpt_stmt::pointer | create (const rpt_expr::pointer &a, const rpt_expr::pointer &b, const rpt_expr::pointer &c, const rpt_stmt::pointer &body) |
Protected Member Functions | |
| void | run (rpt_stmt_result_ty *) const |
Private Member Functions | |
| rpt_stmt_for (const rpt_expr::pointer &a, const rpt_expr::pointer &b, const rpt_expr::pointer &c, const rpt_stmt::pointer &body) | |
| rpt_stmt_for () | |
| rpt_stmt_for (const rpt_stmt_for &) | |
| rpt_stmt_for & | operator= (const rpt_stmt_for &) |
Private Attributes | |
| rpt_expr::pointer | e [3] |
The rpt_stmt_for class is used to represent a "for" loop statement syntax tree node.
| virtual rpt_stmt_for::~rpt_stmt_for | ( | ) | [virtual] |
The destructor.
| rpt_stmt_for::rpt_stmt_for | ( | const rpt_expr::pointer & | a, |
| const rpt_expr::pointer & | b, | ||
| const rpt_expr::pointer & | c, | ||
| const rpt_stmt::pointer & | body | ||
| ) | [private] |
The constructor. It is private on purpose, use the "create" class method instead.
| a | The loop initialization expression |
| b | The loop text expression |
| c | The loop advance expression |
| body | The loop body ststement tree. |
| rpt_stmt_for::rpt_stmt_for | ( | ) | [private] |
The default constructor. Do not use.
| rpt_stmt_for::rpt_stmt_for | ( | const rpt_stmt_for & | ) | [private] |
The copy constructor. Do not use.
| static rpt_stmt::pointer rpt_stmt_for::create | ( | const rpt_expr::pointer & | a, |
| const rpt_expr::pointer & | b, | ||
| const rpt_expr::pointer & | c, | ||
| const rpt_stmt::pointer & | body | ||
| ) | [static] |
The create class method is used to create a new dynamically allocate instance of this class.
| a | The loop initialization expression |
| b | The loop text expression |
| c | The loop advance expression |
| body | The loop body ststement tree. |
| rpt_stmt_for& rpt_stmt_for::operator= | ( | const rpt_stmt_for & | ) | [private] |
The assignment operator. Do not use.
| void rpt_stmt_for::run | ( | rpt_stmt_result_ty * | ) | const [protected, virtual] |
The run method is used to execute the statament.
Implements rpt_stmt.
rpt_expr::pointer rpt_stmt_for::e[3] [private] |
1.7.6.1