(Binding<T> binding)
| 246 | // execute the overrides module, keeping track of which keys and scopes are bound |
| 247 | new ModuleWriter(binder) { |
| 248 | @Override |
| 249 | public <T> Void visit(Binding<T> binding) { |
| 250 | overriddenKeys.add(binding.getKey()); |
| 251 | return super.visit(binding); |
| 252 | } |
| 253 | |
| 254 | @Override |
| 255 | public Void visit(ScopeBinding scopeBinding) { |
nothing calls this directly
no test coverage detected