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

polserver / polserver / 21066490217

16 Jan 2026 12:22PM UTC coverage: 60.507%. Remained the same
21066490217

push

github

web-flow
misc clang-tidy (#853)

* trigger tidy

* Automated clang-tidy change: modernize-use-equals-delete,modernize-make-shared,modernize-make-unique,modernize-use-constraints,readability-container-size-empty,modernize-redundant-void-arg,modernize-use-emplace

* removed non needed macros

* missed to disable tidy build

---------

Co-authored-by: Clang Tidy <clang-tidy@users.noreply.github.com>

174 of 248 new or added lines in 74 files covered. (70.16%)

2 existing lines in 2 files now uncovered.

44459 of 73477 relevant lines covered (60.51%)

515895.79 hits per line

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

70.0
/pol-core/bscript/continueimp.cpp
1
#include "continueimp.h"
2
#include "executor.h"
3

4
namespace Pol
5
{
6
namespace Bscript
7
{
8
BContinuation::BContinuation( BObjectRef funcref, BObjectRefVec args,
790✔
9
                              ContinuationCallbackWrapper wrapper, void* wrapperData )
790✔
10
    : BObjectImp( BObjectImp::OTContinuation ),
11
      funcref_( std::move( funcref ) ),
790✔
12
      wrapper_( wrapper ),
790✔
13
      wrapperData_( wrapperData ),
790✔
14
      args( std::move( args ) )
1,580✔
15
{
16
}
790✔
17

18
BContinuation::~BContinuation()
1,580✔
19
{
20
  wrapper_.free( wrapperData_ );
790✔
21
}
1,580✔
22

23
BObjectImp* BContinuation::continueWith( Executor& exec, BObjectRef result )
35,890✔
24
{
25
  return wrapper_.call( exec, this, wrapperData_, std::move( result ) );
35,890✔
26
}
27

28
BFunctionRef* BContinuation::func()
70,990✔
29
{
30
  return funcref_->impptr<BFunctionRef>();
70,990✔
31
}
32

NEW
33
BObjectImp* BContinuation::copy() const
×
34
{
35
  return nullptr;
×
36
}
37

38
size_t BContinuation::sizeEstimate() const
×
39
{
40
  return sizeof( BContinuation ) + wrapper_.size();
×
41
}
42

43
std::string BContinuation::getStringRep() const
×
44
{
45
  return "<continuation>";
×
46
}
47
}  // namespace Bscript
48
}  // namespace Pol
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc