#include <ss_expr_unary_op.g.hh>
Inheritance diagram for lestes::lang::cplus::sem::ss_bind_to_temporary:

Public Member Functions | |
| ptr< ss_type > | src_type_get () const |
| The method src_type_get returns the value of the field ss_bind_to_temporary::src_type. | |
| void | src_type_set (const ptr< ss_type > &) |
| The method src_type_set sets the field ss_bind_to_temporary::src_type to the given value. | |
| virtual void | accept_ss_expression_visitor (ptr< ss_expression_visitor > v) |
| virtual ptr< reflection_list > | reflection_get () const |
| for purposes of dumping | |
| virtual ptr< field_list_list > | field_values_get () const |
| for purposes of dumping | |
Static Public Member Functions | |
| static ptr< ss_bind_to_temporary > | create (ptr< ::lestes::std::source_location > a__ss_base_with_location__location, ptr< ss_type > a__ss_expression__type, ptr< ss_sp > a__ss_expression__psp, ptr< ss_sp > a__ss_expression__nsp, ptr< ss_expression > a__ss_unary_expr__expr, ptr< ss_type > a__ss_bind_to_temporary__src_type) |
| First generated factory method for class ss_bind_to_temporary. | |
Protected Member Functions | |
| ss_bind_to_temporary (ptr< ::lestes::std::source_location > a__ss_base_with_location__location, ptr< ss_type > a__ss_expression__type, ptr< ss_sp > a__ss_expression__psp, ptr< ss_sp > a__ss_expression__nsp, ptr< ss_expression > a__ss_unary_expr__expr, ptr< ss_type > a__ss_bind_to_temporary__src_type) | |
| Generated constructor for class ss_bind_to_temporary. | |
| virtual void | gc_mark () |
| Marking routine for class ss_bind_to_temporary. | |
Private Attributes | |
| srp< ss_type > | src_type |
Static Private Attributes | |
| static ptr< reflection_list > | reflection = reflection |
This is conversion operator used to represent reference binding from rvalue to const reference.
Definition at line 273 of file ss_expr_unary_op.g.hh.
| lestes::lang::cplus::sem::ss_bind_to_temporary::ss_bind_to_temporary | ( | ptr< ::lestes::std::source_location > | a__ss_base_with_location__location, | |
| ptr< ss_type > | a__ss_expression__type, | |||
| ptr< ss_sp > | a__ss_expression__psp, | |||
| ptr< ss_sp > | a__ss_expression__nsp, | |||
| ptr< ss_expression > | a__ss_unary_expr__expr, | |||
| ptr< ss_type > | a__ss_bind_to_temporary__src_type | |||
| ) | [protected] |
Generated constructor for class ss_bind_to_temporary.
Generated constructor for class ss_bind_to_temporary.
Definition at line 496 of file ss_expr_unary_op.g.cc.
Referenced by create().
00502 : ss_unary_expr(a__ss_base_with_location__location, 00503 a__ss_expression__type, 00504 a__ss_expression__psp, 00505 a__ss_expression__nsp, 00506 a__ss_unary_expr__expr), src_type(checked(a__ss_bind_to_temporary__src_type)) 00507 {}
| ptr< ss_type > lestes::lang::cplus::sem::ss_bind_to_temporary::src_type_get | ( | ) | const |
The method src_type_get returns the value of the field ss_bind_to_temporary::src_type.
Definition at line 454 of file ss_expr_unary_op.g.cc.
References src_type.
00455 { 00456 return src_type; 00457 }
| void lestes::lang::cplus::sem::ss_bind_to_temporary::src_type_set | ( | const ptr< ss_type > & | x | ) |
The method src_type_set sets the field ss_bind_to_temporary::src_type to the given value.
| [in] | x | The new value to set ss_bind_to_temporary::src_type to. |
Definition at line 463 of file ss_expr_unary_op.g.cc.
References src_type.
00464 { 00465 ss_bind_to_temporary::src_type = x; 00466 }
| void lestes::lang::cplus::sem::ss_bind_to_temporary::accept_ss_expression_visitor | ( | ptr< ss_expression_visitor > | v | ) | [virtual] |
Implements lestes::lang::cplus::sem::ss_unary_expr.
Definition at line 468 of file ss_expr_unary_op.g.cc.
| ptr< ss_bind_to_temporary > lestes::lang::cplus::sem::ss_bind_to_temporary::create | ( | ptr< ::lestes::std::source_location > | a__ss_base_with_location__location, | |
| ptr< ss_type > | a__ss_expression__type, | |||
| ptr< ss_sp > | a__ss_expression__psp, | |||
| ptr< ss_sp > | a__ss_expression__nsp, | |||
| ptr< ss_expression > | a__ss_unary_expr__expr, | |||
| ptr< ss_type > | a__ss_bind_to_temporary__src_type | |||
| ) | [static] |
First generated factory method for class ss_bind_to_temporary.
This factory method for class ss_bind_to_temporary takes values of all fields as arguments.
Definition at line 477 of file ss_expr_unary_op.g.cc.
References ss_bind_to_temporary().
00483 { 00484 return ptr< ss_bind_to_temporary > ( new ss_bind_to_temporary(a__ss_base_with_location__location, 00485 a__ss_expression__type, 00486 a__ss_expression__psp, 00487 a__ss_expression__nsp, 00488 a__ss_unary_expr__expr, 00489 a__ss_bind_to_temporary__src_type) ); 00490 }
| ptr< object::reflection_list > lestes::lang::cplus::sem::ss_bind_to_temporary::reflection_get | ( | ) | const [virtual] |
for purposes of dumping
Reimplemented from lestes::lang::cplus::sem::ss_unary_expr.
Definition at line 509 of file ss_expr_unary_op.g.cc.
References lestes::std::list< T >::create(), reflection, and lestes::lang::cplus::sem::ss_unary_expr::reflection_get().
00510 { 00511 if (!reflection) { 00512 typedef class_reflection::field_metadata md; 00513 typedef class_reflection::field_metadata_list mdlist; 00514 ptr<mdlist> mdl = mdlist::create(); 00515 mdl->push_back( md::create( "src_type", "ss_type" ) ); 00516 reflection = reflection_list::create( ss_unary_expr::reflection_get() ); 00517 reflection->push_back( class_reflection::create( "ss_bind_to_temporary", mdl ) ); 00518 } 00519 return reflection; 00520 }
| ptr< object::field_list_list > lestes::lang::cplus::sem::ss_bind_to_temporary::field_values_get | ( | ) | const [virtual] |
for purposes of dumping
Reimplemented from lestes::lang::cplus::sem::ss_unary_expr.
Definition at line 522 of file ss_expr_unary_op.g.cc.
References lestes::std::list< T >::create(), and lestes::lang::cplus::sem::ss_unary_expr::field_values_get().
00523 { 00524 ptr < field_list_list > result = ss_unary_expr::field_values_get(); 00525 result->push_back( value_list::create() ); 00526 result->back()->push_back( this->src_type ); 00527 return result; 00528 }
| void lestes::lang::cplus::sem::ss_bind_to_temporary::gc_mark | ( | void | ) | [protected, virtual] |
Marking routine for class ss_bind_to_temporary.
Marking routine is used for garbage collection.
Reimplemented from lestes::lang::cplus::sem::ss_unary_expr.
Definition at line 535 of file ss_expr_unary_op.g.cc.
References lestes::lang::cplus::sem::ss_unary_expr::gc_mark().
00536 { 00537 ss_unary_expr::gc_mark(); 00538 }
srp< ss_type > lestes::lang::cplus::sem::ss_bind_to_temporary::src_type [private] |
Definition at line 313 of file ss_expr_unary_op.g.hh.
Referenced by src_type_get(), and src_type_set().
ptr< object::reflection_list > lestes::lang::cplus::sem::ss_bind_to_temporary::reflection = reflection [static, private] |
Reimplemented from lestes::lang::cplus::sem::ss_unary_expr.
Definition at line 314 of file ss_expr_unary_op.g.hh.
Referenced by reflection_get().
1.5.1-20070107