Module type Plugin.Parameter_input


module type Parameter_input = sig .. end
Minimal signature to implement for each parameter corresponding to an option on the command line argument.

val option_name : string
The name of the option
val help : string
A description for this option (e.g. used by -help)
val kind : [> `Correctness | `Irrelevant | `Tuning ]
See State.kind for a description of the possible values.
Since Carbon-20101201