| 639 | } |
| 640 | |
| 641 | bool Structure::isSafeToDelete(das_set<Structure *> & dep) const { // && |
| 642 | for ( const auto & fd : fields ) { |
| 643 | if ( fd.type && !fd.type->isSafeToDelete(dep) && fd.annotation.find("do_not_delete",Type::tBool)==nullptr ) { |
| 644 | return false; |
| 645 | } |
| 646 | } |
| 647 | return true; |
| 648 | } |
| 649 | |
| 650 | bool Structure::isLocal(das_set<Structure *> & dep) const { // && |
| 651 | for ( const auto & fd : fields ) { |
no test coverage detected