(methods)
| 347 | } |
| 348 | |
| 349 | function getFormattedScopeMethods(methods) { |
| 350 | return methods.filter(function(m) { |
| 351 | return m.name.indexOf('__') === 0; |
| 352 | }) |
| 353 | .map(function(m) { |
| 354 | return formatMethod(m); |
| 355 | }) |
| 356 | .reduce(function(p, c) { |
| 357 | return p.concat(c); |
| 358 | }); |
| 359 | } |
| 360 | |
| 361 | function getFormattedPrototypeMethods(methods) { |
| 362 | return methods.filter(function(m) { |
no test coverage detected
searching dependent graphs…