(fn)
| 4345 | } |
| 4346 | |
| 4347 | function anonFn(fn) { |
| 4348 | // For anonymous functions, showing at the very least the function signature can help in |
| 4349 | // debugging. |
| 4350 | var args = extractArgs(fn); |
| 4351 | if (args) { |
| 4352 | return 'function(' + (args[1] || '').replace(/[\s\r\n]+/, ' ') + ')'; |
| 4353 | } |
| 4354 | return 'fn'; |
| 4355 | } |
| 4356 | |
| 4357 | function annotate(fn, strictDi, name) { |
| 4358 | var $inject, |
no test coverage detected