(name, value)
| 4950 | function value(name, val) { return factory(name, valueFn(val), false); } |
| 4951 | |
| 4952 | function constant(name, value) { |
| 4953 | assertNotHasOwnProperty(name, 'constant'); |
| 4954 | providerCache[name] = value; |
| 4955 | instanceCache[name] = value; |
| 4956 | } |
| 4957 | |
| 4958 | function decorator(serviceName, decorFn) { |
| 4959 | var origProvider = providerInjector.get(serviceName + providerSuffix), |
nothing calls this directly
no test coverage detected