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

polserver / polserver / 25918451630

15 May 2026 12:43PM UTC coverage: 60.929% (+2.1%) from 58.859%
25918451630

push

github

turleypol
added dynamic property which returns a pointer of the object instead of
a copy like the current imp.
needed to be able to eg store a vector

43 of 61 new or added lines in 2 files covered. (70.49%)

14455 existing lines in 345 files now uncovered.

44695 of 73356 relevant lines covered (60.93%)

449621.59 hits per line

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

72.73
/pol-core/bscript/compiler/ast/FunctionReference.cpp
1
#include "FunctionReference.h"
2

3

4
#include "bscript/compiler/ast/NodeVisitor.h"
5

6
namespace Pol::Bscript::Compiler
7
{
8
FunctionReference::FunctionReference( const SourceLocation& source_location, std::string name,
765✔
9
                                      std::shared_ptr<FunctionLink> function_link )
765✔
10
    : Value( source_location ),
11
      name( std::move( name ) ),
765✔
12
      function_link( std::move( function_link ) )
1,530✔
13
{
14
}
765✔
15

16
void FunctionReference::accept( NodeVisitor& visitor )
4,049✔
17
{
18
  visitor.visit_function_reference( *this );
4,049✔
19
}
4,049✔
20

21
void FunctionReference::describe_to( std::string& w ) const
×
22
{
UNCOV
23
  fmt::format_to( std::back_inserter( w ), "function-reference(@{})", name );
×
UNCOV
24
}
×
25

26
}  // namespace Pol::Bscript::Compiler
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