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

nette / neon / 22293166616

23 Feb 2026 04:40AM UTC coverage: 98.488%. Remained the same
22293166616

push

github

dg
added CLAUDE.md

456 of 463 relevant lines covered (98.49%)

0.98 hits per line

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

66.67
/src/Neon/Node.php
1
<?php declare(strict_types=1);
2

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

8
namespace Nette\Neon;
9

10

11
/**
12
 * @implements \IteratorAggregate<Node>
13
 */
14
abstract class Node implements \IteratorAggregate
15
{
16
        public ?int $startTokenPos = null;
17
        public ?int $endTokenPos = null;
18
        public ?int $startLine = null;
19
        public ?int $endLine = null;
20

21

22
        abstract public function toValue(): mixed;
23

24

25
        abstract public function toString(): string;
26

27

28
        public function &getIterator(): \Generator
1✔
29
        {
30
                return;
1✔
31
                yield;
×
32
        }
33
}
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