* @param {string} provider * @param {string} method * @returns {angular.Module}
(provider, method)
| 2201 | * @returns {angular.Module} |
| 2202 | */ |
| 2203 | function invokeLaterAndSetModuleName(provider, method) { |
| 2204 | return function(recipeName, factoryFunction) { |
| 2205 | if (factoryFunction && isFunction(factoryFunction)) factoryFunction.$$moduleName = name; |
| 2206 | invokeQueue.push([provider, method, arguments]); |
| 2207 | return moduleInstance; |
| 2208 | }; |
| 2209 | } |
| 2210 | }); |
| 2211 | }; |
| 2212 | }); |
no test coverage detected