| 110 | } |
| 111 | |
| 112 | bool get_bool_annotation_member_value(AST_Annotation_Appl* appl, |
| 113 | const char* member_name) |
| 114 | { |
| 115 | AST_Expression::AST_ExprValue* const ev = |
| 116 | get_annotation_member_ev(appl, member_name, AST_Expression::EV_bool); |
| 117 | return ev->u.bval; |
| 118 | } |
| 119 | |
| 120 | ACE_UINT32 get_u32_annotation_member_value(AST_Annotation_Appl* appl, |
| 121 | const char* member_name) |
no test coverage detected