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

me-viper / OpaDotNet / 11512106788

25 Oct 2024 04:51AM UTC coverage: 84.386%. Remained the same
11512106788

push

github

me-viper
ci: Add CI inputs

1820 of 2364 branches covered (76.99%)

Branch coverage included in aggregate %.

3817 of 4316 relevant lines covered (88.44%)

1737.21 hits per line

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

50.0
/src/Wasm/src/Builtins/OpaCustomBuiltinAttribute.cs
1
namespace OpaDotNet.Wasm.Builtins;
2

3
/// <summary>
4
/// Marks custom built-in implementation.
5
/// </summary>
6
/// <param name="name">Built-in name.</param>
7
[AttributeUsage(AttributeTargets.Method, Inherited = false)]
8
public class OpaCustomBuiltinAttribute(string name) : Attribute
396✔
9
{
10
    /// <summary>
11
    /// Built-in name.
12
    /// </summary>
13
    public string Name { get; } = name;
792✔
14

15
    /// <summary>
16
    /// If <c>true</c> enables value memoization across multiple calls in the same query.
17
    /// </summary>
18
    public bool Memorize { get; init; }
96✔
19

20
    internal string? Description { get; set; }
×
21

22
    internal string[]? Categories { get; set; }
×
23

24
    internal OpaImportType Type { get; set; }
×
25
}
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