13 lines
348 B
FSharp
13 lines
348 B
FSharp
namespace Mutation
|
|
|
|
open System
|
|
|
|
[<AttributeUsage(AttributeTargets.Method, AllowMultiple = true)>]
|
|
type MutationCaseAttribute(id: string, file: string, line: int, find: string, replace: string) =
|
|
inherit Attribute()
|
|
|
|
member _.Id = id
|
|
member _.File = file
|
|
member _.Line = line
|
|
member _.Find = find
|
|
member _.Replace = replace
|