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