| 14496 | } |
| 14497 | |
| 14498 | SectionTracker::SectionTracker( NameAndLocation const& nameAndLocation, TrackerContext& ctx, ITracker* parent ) |
| 14499 | : TrackerBase( nameAndLocation, ctx, parent ), |
| 14500 | m_trimmed_name(trim(nameAndLocation.name)) |
| 14501 | { |
| 14502 | if( parent ) { |
| 14503 | while( !parent->isSectionTracker() ) |
| 14504 | parent = &parent->parent(); |
| 14505 | |
| 14506 | SectionTracker& parentSection = static_cast<SectionTracker&>( *parent ); |
| 14507 | addNextFilters( parentSection.m_filters ); |
| 14508 | } |
| 14509 | } |
| 14510 | |
| 14511 | bool SectionTracker::isComplete() const { |
| 14512 | bool complete = true; |
nothing calls this directly
no test coverage detected