MCPcopy Create free account
hub / github.com/apache/trafficserver / SectionTracker

Method SectionTracker

lib/catch2/catch.hpp:14505–14516  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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;

Callers

nothing calls this directly

Calls 2

trimFunction · 0.85
isSectionTrackerMethod · 0.80

Tested by

no test coverage detected