Initial commit
This commit is contained in:
commit
cc3bb28aca
3 changed files with 266 additions and 0 deletions
13
MutationCase.fs
Normal file
13
MutationCase.fs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue