* @param {string} provider * @param {string} method * @param {String=} insertMethod * @returns {angular.Module}
(provider, method, insertMethod)
| 1886 | * @returns {angular.Module} |
| 1887 | */ |
| 1888 | function invokeLater(provider, method, insertMethod) { |
| 1889 | return function() { |
| 1890 | invokeQueue[insertMethod || 'push']([provider, method, arguments]); |
| 1891 | return moduleInstance; |
| 1892 | }; |
| 1893 | } |
| 1894 | }); |
| 1895 | }; |
| 1896 | }); |