| 9 | ) |
| 10 | |
| 11 | type Experiment struct { |
| 12 | Name string // The name of the experiment. |
| 13 | AllowedValues []int // The values that can enable this experiment. |
| 14 | Value int // The version of the experiment that is enabled. |
| 15 | } |
| 16 | |
| 17 | // New creates a new experiment with the given name and sets the values that can |
| 18 | // enable it. |
nothing calls this directly
no outgoing calls
no test coverage detected