DisableShortCircuit turns short circuit off.
()
| 136 | |
| 137 | // DisableShortCircuit turns short circuit off. |
| 138 | func DisableShortCircuit() Option { |
| 139 | return func(c *conf.Config) { |
| 140 | c.ShortCircuit = false |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | // Patch adds visitor to list of visitors what will be applied before compiling AST to bytecode. |
| 145 | func Patch(visitor ast.Visitor) Option { |
no outgoing calls
searching dependent graphs…