| 332 | |
| 333 | let nofFunktions = all.length; |
| 334 | let ownBytesSum = list => { |
| 335 | return list.reduce((bytes, each) => bytes + each.getOwnBytes(), 0) |
| 336 | }; |
| 337 | |
| 338 | let info = (name, funktions) => { |
| 339 | let ownBytes = ownBytesSum(funktions); |
nothing calls this directly
no test coverage detected