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

lucaslorentz / auto-compute / 18778187096

24 Oct 2025 11:14AM UTC coverage: 83.295% (-0.2%) from 83.516%
18778187096

push

github

lucaslorentz
Move IncrementalContext param into Input param

56 of 58 new or added lines in 22 files covered. (96.55%)

8 existing lines in 5 files now uncovered.

1790 of 2149 relevant lines covered (83.29%)

880.64 hits per line

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

0.0
/src/LLL.AutoCompute/IObservedMember.cs
1
using System.Linq.Expressions;
2

3
namespace LLL.AutoCompute;
4

5
public interface IObservedMember
6
{
7
    string Name { get; }
8
    Type InputType { get; }
9
    string ToDebugString();
10
    Expression CreateOriginalValueExpression(
11
        IObservedMemberAccess memberAccess,
12
        Expression inputExpression);
13
    Expression CreateCurrentValueExpression(
14
        IObservedMemberAccess memberAccess,
15
        Expression inputExpression);
16
}
17

18
public interface IObservedMember<in TInput> : IObservedMember
19
    where TInput : ComputedInput
20
{
UNCOV
21
    Type IObservedMember.InputType => typeof(TInput);
×
22
}
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

© 2025 Coveralls, Inc