NewEnvironment returns a new Environment. If reporter is nil, the function panics. Example: env := NewEnvironment(t)
(reporter Reporter)
| 30 | // |
| 31 | // env := NewEnvironment(t) |
| 32 | func NewEnvironment(reporter Reporter) *Environment { |
| 33 | return newEnvironment(newChainWithDefaults("Environment()", reporter)) |
| 34 | } |
| 35 | |
| 36 | // NewEnvironmentC returns a new Environment with config. |
| 37 | // |
searching dependent graphs…