• 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/ForeachDeclareKeyValueStatementNode.cs
1
using StepLang.Parsing.Nodes.Expressions;
2
using StepLang.Parsing.Nodes.VariableDeclarations;
3
using StepLang.Tokenizing;
4

5
namespace StepLang.Parsing.Nodes.Statements;
6

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

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