• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

polserver / polserver / 28964407401

08 Jul 2026 05:58PM UTC coverage: 61.276% (+0.3%) from 60.927%
28964407401

push

github

web-flow
Split bobject header  (#892)

* splitted bobject header

* fixed runecl

* crashfix

* missing header

* more missing (debug build)

* runecl debug include

* renamed contiter, moved formating

* removed more unused headers

1145 of 1517 new or added lines in 23 files covered. (75.48%)

217 existing lines in 4 files now uncovered.

44972 of 73392 relevant lines covered (61.28%)

557151.3 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

10.0
/pol-core/bscript/bspread.cpp
1
#include "bspread.h"
2

3
namespace Pol::Bscript
4
{
5

6
BSpread::BSpread( BObjectRef obj ) : BObjectImp( OTSpread ), object( std::move( obj ) ) {}
2,102✔
7

NEW
8
BSpread::BSpread( const BSpread& B ) : BObjectImp( OTSpread ), object( B.object ) {}
×
9

NEW
10
size_t BSpread::sizeEstimate() const
×
11
{
NEW
12
  return sizeof( BSpread ) + object.sizeEstimate();
×
13
}
14

NEW
15
BObjectImp* BSpread::copy() const
×
16
{
NEW
17
  return new BSpread( *this );
×
18
}
19

NEW
20
bool BSpread::isTrue() const
×
21
{
NEW
22
  return object->isTrue();
×
23
}
24

NEW
25
std::string BSpread::getStringRep() const
×
26
{
NEW
27
  return "Spread";
×
28
}
29
}  // namespace Pol::Bscript
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE TRIAL · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc