(name, value)
| 4463 | function value(name, val) { return factory(name, valueFn(val), false); } |
| 4464 | |
| 4465 | function constant(name, value) { |
| 4466 | assertNotHasOwnProperty(name, 'constant'); |
| 4467 | providerCache[name] = value; |
| 4468 | instanceCache[name] = value; |
| 4469 | } |
| 4470 | |
| 4471 | function decorator(serviceName, decorFn) { |
| 4472 | var origProvider = providerInjector.get(serviceName + providerSuffix), |
nothing calls this directly
no test coverage detected