Magic486/moon_mutest/core does not have a README file
pub(all) struct MutationCandidate {
id : Int
rule : MutationRule
span : SourceSpan
original : String
replacement : String
line_text : String
} derive(Eq, ToJson, Debug)pub(all) struct MutationRule {
kind : MutationKind
from : String
to : String
label : String
} derive(Eq, ToJson, Debug)pub(all) struct RuleCatalogEntry {
rule : MutationRule
profile : RuleProfile
description : String
} derive(Eq, ToJson, Debug)fn discover_filtered(source : String, filter : MutationFilter, file? : String) -> Array[MutationCandidate]fn discover_with_profile(source : String, profile : RuleProfile, file? : String) -> Array[MutationCandidate]fn discover_with_rules(source : String, rules : ArrayView[MutationRule], file? : String) -> Array[MutationCandidate]fn filter_candidates(candidates : ArrayView[MutationCandidate], filter : MutationFilter) -> Array[MutationCandidate]fn summarize_candidates(file : String, candidates : ArrayView[MutationCandidate]) -> MutationSummaryMutation testing toolkit for MoonBit projects
Dependencies