(fn)
| 4252 | } |
| 4253 | |
| 4254 | function anonFn(fn) { |
| 4255 | // For anonymous functions, showing at the very least the function signature can help in |
| 4256 | // debugging. |
| 4257 | var args = extractArgs(fn); |
| 4258 | if (args) { |
| 4259 | return 'function(' + (args[1] || '').replace(/[\s\r\n]+/, ' ') + ')'; |
| 4260 | } |
| 4261 | return 'fn'; |
| 4262 | } |
| 4263 | |
| 4264 | function annotate(fn, strictDi, name) { |
| 4265 | var $inject, |
no test coverage detected