aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorIgor Minar2010-11-18 17:03:43 -0800
committerIgor Minar2010-11-18 17:03:43 -0800
commit1719b0aca5f02a9d70482c10ecb7643a9422b2f5 (patch)
treea7cc89936d2e8162e517dac276ac0f4ec8d114aa /src
parent7ee102eecf927c5a481c6d16b5ff08bfe9563bdc (diff)
downloadangular.js-1719b0aca5f02a9d70482c10ecb7643a9422b2f5.tar.bz2
fix all closure compilation warnings due to invalid function types
Diffstat (limited to 'src')
-rw-r--r--src/Browser.js8
-rw-r--r--src/Scope.js22
-rw-r--r--src/services.js2
3 files changed, 16 insertions, 16 deletions
diff --git a/src/Browser.js b/src/Browser.js
index b7f0d3f3..197cf1f4 100644
--- a/src/Browser.js
+++ b/src/Browser.js
@@ -83,7 +83,7 @@ function Browser(location, document, head, XHR, $log) {
* @name angular.service.$browser#notifyWhenNoOutstandingRequests
* @methodOf angular.service.$browser
*
- * @param {function} callback Function that will be called when no outstanding request
+ * @param {function()} callback Function that will be called when no outstanding request
*/
self.notifyWhenNoOutstandingRequests = function(callback) {
if (outstandingRequestCount === 0) {
@@ -114,12 +114,12 @@ function Browser(location, document, head, XHR, $log) {
* @name angular.service.$browser#addPollFn
* @methodOf angular.service.$browser
*
- * @param {function} fn Poll function to add
+ * @param {function()} fn Poll function to add
*
* @description
* Adds a function to the list of functions that poller periodically executes
*
- * @returns {function} the added function
+ * @returns {function()} the added function
*/
self.addPollFn = function(fn) {
pollFns.push(fn);
@@ -133,7 +133,7 @@ function Browser(location, document, head, XHR, $log) {
* @methodOf angular.service.$browser
*
* @param {number} interval How often should browser call poll functions (ms)
- * @param {function} setTimeout Reference to a real or fake `setTimeout` function.
+ * @param {function()} setTimeout Reference to a real or fake `setTimeout` function.
*
* @description
* Configures the poller to run in the specified intervals, using the specified
diff --git a/src/Scope.js b/src/Scope.js
index cd0c6dc1..b7f553d6 100644
--- a/src/Scope.js
+++ b/src/Scope.js
@@ -258,7 +258,7 @@ function createScope(parent, providers, instanceCache) {
expect(fn()).toEqual(scope);
</pre>
*
- * @param {function} fn Function to be bound.
+ * @param {function()} fn Function to be bound.
*/
$bind: bind(instance, bind, instance),
$get: bind(instance, getter, instance),
@@ -292,7 +292,7 @@ function createScope(parent, providers, instanceCache) {
expect(scope.sum).toEqual(3);
</pre>
*
- * @param {(string|function)=} exp An angular expression to be compiled to a function or a js
+ * @param {(string|function())=} exp An angular expression to be compiled to a function or a js
* function.
*
* @returns {*} The result of calling compiled `exp` with `this` set to the current scope.
@@ -356,8 +356,8 @@ function createScope(parent, providers, instanceCache) {
expect(body.hasClass('ng-exception')).toEqual(true);
</pre>
*
- * @param {string|function} expression Angular expression to evaluate.
- * @param {function|DOMElement} exceptionHandler Function to be called or DOMElement to be
+ * @param {string|function()} expression Angular expression to evaluate.
+ * @param {function()|DOMElement} exceptionHandler Function to be called or DOMElement to be
* decorated.
* @returns {*} The result of `expression` evaluation.
*/
@@ -411,12 +411,12 @@ function createScope(parent, providers, instanceCache) {
expect(scope.counter).toEqual(2);
</pre>
*
- * @param {function|string} watchExp Expression that should be evaluated and checked for change
- * during each eval cycle. Can be an angular string expression or a function.
- * @param {function|string} listener Function (or angular string expression) that gets called
+ * @param {function()|string} watchExp Expression that should be evaluated and checked for
+ * change during each eval cycle. Can be an angular string expression or a function.
+ * @param {function()|string} listener Function (or angular string expression) that gets called
* every time the value of the `watchExp` changes. The function will be called with two
* parameters, `newValue` and `oldValue`.
- * @param {(function|DOMElement)=} [exceptionHanlder=angular.service.$exceptionHandler] Handler
+ * @param {(function()|DOMElement)=} [exceptionHanlder=angular.service.$exceptionHandler] Handler
* that gets called when `watchExp` or `listener` throws an exception. If a DOMElement is
* specified as handler, the element gets decorated by angular with the information about the
* exception.
@@ -465,8 +465,8 @@ function createScope(parent, providers, instanceCache) {
</pre>
*
* @param {number} [priority=0] Execution priority. Lower priority numbers get executed first.
- * @param {string|function} expr Angular expression or function to be executed.
- * @param {(function|DOMElement)=} [exceptionHandler=angular.service.$exceptionHandler] Handler
+ * @param {string|function()} expr Angular expression or function to be executed.
+ * @param {(function()|DOMElement)=} [exceptionHandler=angular.service.$exceptionHandler] Handler
* function to call or DOM element to decorate when an exception occurs.
*
*/
@@ -566,7 +566,7 @@ function createScope(parent, providers, instanceCache) {
* - is a child of the current scope
* - will {@link angular.scope.$become $become} of type specified via `constructor`
*
- * @param {function} constructor Constructor function of the type the new scope should assume.
+ * @param {function()} constructor Constructor function of the type the new scope should assume.
* @returns {Object} The newly created child scope.
*
*/
diff --git a/src/services.js b/src/services.js
index f2260c7f..e8006496 100644
--- a/src/services.js
+++ b/src/services.js
@@ -624,7 +624,7 @@ angularServiceInject('$route', function(location) {
* @name angular.service.$route#onChange
* @methodOf angular.service.$route
*
- * @param {function} fn Function that will be called on route change
+ * @param {function()} fn Function that will be called on route change
*
* @description
* Register a handler function that will be called when route changes