(name, time, opt_parent)
| 29 | |
| 30 | |
| 31 | function createNode(name, time, opt_parent) { |
| 32 | var node = new ProfileView.Node(name, time, time, null); |
| 33 | if (opt_parent) { |
| 34 | opt_parent.addChild(node); |
| 35 | } |
| 36 | return node; |
| 37 | } |
| 38 | |
| 39 | |
| 40 | (function testSorting() { |
no test coverage detected
searching dependent graphs…