(name, value)
| 4998 | function value(name, val) { return factory(name, valueFn(val), false); } |
| 4999 | |
| 5000 | function constant(name, value) { |
| 5001 | assertNotHasOwnProperty(name, 'constant'); |
| 5002 | providerCache[name] = value; |
| 5003 | instanceCache[name] = value; |
| 5004 | } |
| 5005 | |
| 5006 | function decorator(serviceName, decorFn) { |
| 5007 | var origProvider = providerInjector.get(serviceName + providerSuffix), |
nothing calls this directly
no test coverage detected