(name, value)
| 4629 | function value(name, val) { return factory(name, valueFn(val), false); } |
| 4630 | |
| 4631 | function constant(name, value) { |
| 4632 | assertNotHasOwnProperty(name, 'constant'); |
| 4633 | providerCache[name] = value; |
| 4634 | instanceCache[name] = value; |
| 4635 | } |
| 4636 | |
| 4637 | function decorator(serviceName, decorFn) { |
| 4638 | var origProvider = providerInjector.get(serviceName + providerSuffix), |
nothing calls this directly
no test coverage detected