* @param {string} provider * @param {string} method * @returns {angular.Module}
(provider, method)
| 2265 | * @returns {angular.Module} |
| 2266 | */ |
| 2267 | function invokeLaterAndSetModuleName(provider, method) { |
| 2268 | return function(recipeName, factoryFunction) { |
| 2269 | if (factoryFunction && isFunction(factoryFunction)) factoryFunction.$$moduleName = name; |
| 2270 | invokeQueue.push([provider, method, arguments]); |
| 2271 | return moduleInstance; |
| 2272 | }; |
| 2273 | } |
| 2274 | }); |
| 2275 | }; |
| 2276 | }); |
no test coverage detected