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