(name, value)
| 4323 | function value(name, val) { return factory(name, valueFn(val), false); } |
| 4324 | |
| 4325 | function constant(name, value) { |
| 4326 | assertNotHasOwnProperty(name, 'constant'); |
| 4327 | providerCache[name] = value; |
| 4328 | instanceCache[name] = value; |
| 4329 | } |
| 4330 | |
| 4331 | function decorator(serviceName, decorFn) { |
| 4332 | var origProvider = providerInjector.get(serviceName + providerSuffix), |
nothing calls this directly
no test coverage detected