| 14214 | } |
| 14215 | |
| 14216 | SectionTracker::SectionTracker( NameAndLocation const& nameAndLocation, TrackerContext& ctx, ITracker* parent ) |
| 14217 | : TrackerBase( nameAndLocation, ctx, parent ), |
| 14218 | m_trimmed_name(trim(nameAndLocation.name)) |
| 14219 | { |
| 14220 | if( parent ) { |
| 14221 | while( !parent->isSectionTracker() ) |
| 14222 | parent = &parent->parent(); |
| 14223 | |
| 14224 | SectionTracker& parentSection = static_cast<SectionTracker&>( *parent ); |
| 14225 | addNextFilters( parentSection.m_filters ); |
| 14226 | } |
| 14227 | } |
| 14228 | |
| 14229 | bool SectionTracker::isComplete() const { |
| 14230 | bool complete = true; |
nothing calls this directly
no test coverage detected