AsAny tells the compiler to expect any result.
()
| 64 | |
| 65 | // AsAny tells the compiler to expect any result. |
| 66 | func AsAny() Option { |
| 67 | return func(c *conf.Config) { |
| 68 | c.ExpectAny = true |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | // AsKind tells the compiler to expect kind of the result. |
| 73 | func AsKind(kind reflect.Kind) Option { |
no outgoing calls
searching dependent graphs…