(name, value)
| 5063 | function value(name, val) { return factory(name, valueFn(val), false); } |
| 5064 | |
| 5065 | function constant(name, value) { |
| 5066 | assertNotHasOwnProperty(name, 'constant'); |
| 5067 | providerCache[name] = value; |
| 5068 | instanceCache[name] = value; |
| 5069 | } |
| 5070 | |
| 5071 | function decorator(serviceName, decorFn) { |
| 5072 | var origProvider = providerInjector.get(serviceName + providerSuffix), |
nothing calls this directly
no test coverage detected