(name, value)
| 4092 | function value(name, val) { return factory(name, valueFn(val), false); } |
| 4093 | |
| 4094 | function constant(name, value) { |
| 4095 | assertNotHasOwnProperty(name, 'constant'); |
| 4096 | providerCache[name] = value; |
| 4097 | instanceCache[name] = value; |
| 4098 | } |
| 4099 | |
| 4100 | function decorator(serviceName, decorFn) { |
| 4101 | var origProvider = providerInjector.get(serviceName + providerSuffix), |
nothing calls this directly
no test coverage detected