File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed
packages/vscode-js-profile-flame/src/client/heap Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ export class TreeNodeAccessor implements IHeapProfileNode {
25
25
public readonly src ?: ISourceLocation ;
26
26
27
27
/**
28
- * Gets children of the location .
28
+ * Gets children of the treeNode .
29
29
*/
30
30
public get children ( ) {
31
31
const children : TreeNodeAccessor [ ] = [ ] ;
@@ -38,10 +38,7 @@ export class TreeNodeAccessor implements IHeapProfileNode {
38
38
if ( rs && typeof rs !== 'number' ) {
39
39
children . push ( new TreeNodeAccessor ( this . model , dx , this . y + 1 ) ) ;
40
40
}
41
- } while (
42
- ++ dx < this . model . length &&
43
- this . model [ dx ] . rows [ this . y ] === this . model [ this . x ] . rows [ this . y ]
44
- ) ;
41
+ } while ( ++ dx < this . model . length && this . model [ dx ] . rows [ this . y ] === this . x ) ;
45
42
46
43
return children ;
47
44
}
You can’t perform that action at this time.
0 commit comments