(fn)
| 4280 | } |
| 4281 | |
| 4282 | function anonFn(fn) { |
| 4283 | // For anonymous functions, showing at the very least the function signature can help in |
| 4284 | // debugging. |
| 4285 | var args = extractArgs(fn); |
| 4286 | if (args) { |
| 4287 | return 'function(' + (args[1] || '').replace(/[\s\r\n]+/, ' ') + ')'; |
| 4288 | } |
| 4289 | return 'fn'; |
| 4290 | } |
| 4291 | |
| 4292 | function annotate(fn, strictDi, name) { |
| 4293 | var $inject, |
no test coverage detected