|
Aegis
4.25.D505
|
#include <comma.h>
Public Member Functions | |
| virtual | ~rpt_expr_comma () |
Static Public Member Functions | |
| static rpt_expr::pointer | create (const rpt_expr::pointer &lhs, const rpt_expr::pointer &rhs) |
Protected Member Functions | |
| const char * | name () const |
| rpt_value::pointer | evaluate () const |
Private Member Functions | |
| rpt_expr_comma (const rpt_expr::pointer &lhs, const rpt_expr::pointer &rhs) | |
| rpt_expr_comma () | |
| rpt_expr_comma (const rpt_expr_comma &) | |
| rpt_expr_comma & | operator= (const rpt_expr_comma &) |
The rpt_expr_comma class is used to represent a comma expression (left hand side discarded).
| virtual rpt_expr_comma::~rpt_expr_comma | ( | ) | [virtual] |
The destructor.
| rpt_expr_comma::rpt_expr_comma | ( | const rpt_expr::pointer & | lhs, |
| const rpt_expr::pointer & | rhs | ||
| ) | [private] |
The constructor. The public interface is via the "create" class method.
| lhs | The left hand expression. |
| rhs | The right hand expression. |
| rpt_expr_comma::rpt_expr_comma | ( | ) | [private] |
The default constructor. Do not use.
| rpt_expr_comma::rpt_expr_comma | ( | const rpt_expr_comma & | ) | [private] |
The copy constructor. Do not use.
| static rpt_expr::pointer rpt_expr_comma::create | ( | const rpt_expr::pointer & | lhs, |
| const rpt_expr::pointer & | rhs | ||
| ) | [static] |
The create class method is used to create new dynamically allocated comma expression nodes.
| lhs | The left hand expression. |
| rhs | The right hand expression. |
| rpt_value::pointer rpt_expr_comma::evaluate | ( | ) | const [protected, virtual] |
The evaluate method may be used to calculate the value of the expression syntax tree.
Implements rpt_expr.
| const char* rpt_expr_comma::name | ( | ) | const [protected] |
| rpt_expr_comma& rpt_expr_comma::operator= | ( | const rpt_expr_comma & | ) | [private] |
The assignment operator. Do not use.
1.7.6.1