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

ricardoboss / STEP / 24085328738

07 Apr 2026 01:58PM UTC coverage: 72.919% (+0.07%) from 72.854%
24085328738

Pull #215

github

web-flow
Merge a16d6caa8 into bfcba1edf
Pull Request #215: Improve parser performance

503 of 637 branches covered (78.96%)

Branch coverage included in aggregate %.

51 of 82 new or added lines in 54 files covered. (62.2%)

2 existing lines in 2 files now uncovered.

3299 of 4577 relevant lines covered (72.08%)

1878.87 hits per line

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

0.0
/StepLang/Parsing/Nodes/Statements/ForeachValueStatementNode.cs
1
using StepLang.Parsing.Nodes.Expressions;
2
using StepLang.Tokenizing;
3

4
namespace StepLang.Parsing.Nodes.Statements;
5

6
public sealed record ForeachValueStatementNode(
×
7
        Token ForeachKeywordToken,
×
8
        Token Identifier,
×
NEW
9
        IExpressionNode Collection,
×
10
        StatementNode Body) : StatementNode
×
11
{
12
        public override void Accept(IStatementVisitor visitor)
13
        {
14
                visitor.Visit(this);
×
15
        }
×
16

17
        public override TokenLocation Location => ForeachKeywordToken.Location;
×
18
}
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