(name, value)
| 4442 | function value(name, val) { return factory(name, valueFn(val), false); } |
| 4443 | |
| 4444 | function constant(name, value) { |
| 4445 | assertNotHasOwnProperty(name, 'constant'); |
| 4446 | providerCache[name] = value; |
| 4447 | instanceCache[name] = value; |
| 4448 | } |
| 4449 | |
| 4450 | function decorator(serviceName, decorFn) { |
| 4451 | var origProvider = providerInjector.get(serviceName + providerSuffix), |
nothing calls this directly
no test coverage detected