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

nette / latte / 20711295966

05 Jan 2026 09:41AM UTC coverage: 94.752% (-0.09%) from 94.845%
20711295966

push

github

dg
added support for Partial Function Application WIP

172 of 179 new or added lines in 7 files covered. (96.09%)

29 existing lines in 8 files now uncovered.

5507 of 5812 relevant lines covered (94.75%)

0.95 hits per line

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

80.0
/src/Latte/Compiler/Nodes/Php/VariadicPlaceholderNode.php
1
<?php
2

3
/**
4
 * This file is part of the Latte (https://latte.nette.org)
5
 * Copyright (c) 2008 David Grudl (https://davidgrudl.com)
6
 */
7

8
declare(strict_types=1);
9

10
namespace Latte\Compiler\Nodes\Php;
11

12
use Latte\Compiler\Node;
13
use Latte\Compiler\Position;
14
use Latte\Compiler\PrintContext;
15

16

17
class VariadicPlaceholderNode extends Node
18
{
19
        public function __construct(
1✔
20
                public ?Position $position = null,
21
        ) {
22
        }
1✔
23

24

25
        public function print(PrintContext $context): string
26
        {
UNCOV
27
                return '...';
×
28
        }
29

30

31
        public function &getIterator(): \Generator
1✔
32
        {
33
                false && yield;
34
        }
1✔
35
}
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