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

ricardoboss / STEP / 23026051801

12 Mar 2026 10:03PM UTC coverage: 72.919% (+0.07%) from 72.854%
23026051801

Pull #215

github

web-flow
Merge 087099fd1 into e7bdfe498
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

66.67
/StepLang/Parsing/Nodes/Expressions/ModuloExpressionNode.cs
1
using StepLang.Expressions.Results;
2
using StepLang.Tokenizing;
3

4
namespace StepLang.Parsing.Nodes.Expressions;
5

NEW
6
public record ModuloExpressionNode(Token Operator, IExpressionNode Left, IExpressionNode Right)
×
7
        : BinaryExpressionNode(Operator, Left, Right, BinaryExpressionOperator.Modulo)
5✔
8
{
9
        public override ExpressionResult EvaluateUsing(IExpressionEvaluator evaluator)
10
        {
11
                return evaluator.Evaluate(this);
21✔
12
        }
13
}
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