* @param {string} provider * @param {string} method * @returns {angular.Module}
(provider, method)
| 2389 | * @returns {angular.Module} |
| 2390 | */ |
| 2391 | function invokeLaterAndSetModuleName(provider, method) { |
| 2392 | return function(recipeName, factoryFunction) { |
| 2393 | if (factoryFunction && isFunction(factoryFunction)) factoryFunction.$$moduleName = name; |
| 2394 | invokeQueue.push([provider, method, arguments]); |
| 2395 | return moduleInstance; |
| 2396 | }; |
| 2397 | } |
| 2398 | }); |
| 2399 | }; |
| 2400 | }); |
no test coverage detected