Make mutations patch-based

This commit is contained in:
Sven van Heugten 2026-05-12 08:07:43 +02:00
parent 10ddbef963
commit 2dc2c288fb
No known key found for this signature in database
GPG key ID: D612F88666F4F660
3 changed files with 21 additions and 20 deletions

View file

@ -3,11 +3,7 @@ namespace Mutannot
open System
[<AttributeUsage(AttributeTargets.Method, AllowMultiple = true)>]
type MutationCaseAttribute(id: string, file: string, line: int, find: string, replace: string) =
type MutationCaseAttribute(patch: string) =
inherit Attribute()
member _.Id = id
member _.File = file
member _.Line = line
member _.Find = find
member _.Replace = replace
member _.Patch = patch