| 940 | } |
| 941 | |
| 942 | TryConstructFailAction BE_GlobalData::try_construct(AST_Decl* node) const |
| 943 | { |
| 944 | TryConstructAnnotation* try_construct_annotation = |
| 945 | builtin_annotations_.get<TryConstructAnnotation>(); |
| 946 | TryConstructFailAction value; |
| 947 | if (!try_construct_annotation->node_value_exists(node, value)) { |
| 948 | value = default_try_construct_; |
| 949 | } |
| 950 | return value; |
| 951 | } |
| 952 | |
| 953 | TryConstructFailAction BE_GlobalData::sequence_element_try_construct(AST_Sequence* node) |
| 954 | { |
no test coverage detected