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

Method SectionTracker

Source/ThirdParty/catch2/catch.hpp:14498–14509  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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;

Callers

nothing calls this directly

Calls 3

trimFunction · 0.85
isSectionTrackerMethod · 0.80
parentMethod · 0.80

Tested by

no test coverage detected