MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / SectionTracker

Method SectionTracker

extlibs/catch/include/catch/catch.hpp:13878–13888  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13876 }
13877
13878 SectionTracker::SectionTracker( NameAndLocation const& nameAndLocation, TrackerContext& ctx, ITracker* parent )
13879 : TrackerBase( nameAndLocation, ctx, parent )
13880 {
13881 if( parent ) {
13882 while( !parent->isSectionTracker() )
13883 parent = &parent->parent();
13884
13885 SectionTracker& parentSection = static_cast<SectionTracker&>( *parent );
13886 addNextFilters( parentSection.m_filters );
13887 }
13888 }
13889
13890 bool SectionTracker::isComplete() const {
13891 bool complete = true;

Callers

nothing calls this directly

Calls 1

isSectionTrackerMethod · 0.80

Tested by

no test coverage detected