@@ -39,8 +39,8 @@ export class WorkspaceNode extends NodeBase {
39
39
"dataRootNode:classesRootNode" ,
40
40
"CLS" ,
41
41
this . options ,
42
- false
43
- // new vscode.ThemeIcon("symbol-class")
42
+ false ,
43
+ new vscode . ThemeIcon ( "symbol-class" )
44
44
) ;
45
45
children . push ( node ) ;
46
46
@@ -50,8 +50,8 @@ export class WorkspaceNode extends NodeBase {
50
50
"dataRootNode:routinesRootNode" ,
51
51
"RTN" ,
52
52
this . options ,
53
- false
54
- // new vscode.ThemeIcon("note")
53
+ false ,
54
+ new vscode . ThemeIcon ( "note" )
55
55
) ;
56
56
children . push ( node ) ;
57
57
@@ -61,8 +61,8 @@ export class WorkspaceNode extends NodeBase {
61
61
"dataRootNode:routinesRootNode" ,
62
62
"INC" ,
63
63
this . options ,
64
- false
65
- // new vscode.ThemeIcon("file-symlink-file")
64
+ false ,
65
+ new vscode . ThemeIcon ( "file-symlink-file" )
66
66
) ;
67
67
children . push ( node ) ;
68
68
@@ -72,8 +72,8 @@ export class WorkspaceNode extends NodeBase {
72
72
"dataRootNode:cspRootNode" ,
73
73
"CSP" ,
74
74
this . options ,
75
- false
76
- // new vscode.ThemeIcon("symbol-file")
75
+ false ,
76
+ new vscode . ThemeIcon ( "symbol-file" )
77
77
) ;
78
78
children . push ( node ) ;
79
79
@@ -83,8 +83,8 @@ export class WorkspaceNode extends NodeBase {
83
83
"dataRootNode:otherRootNode" ,
84
84
"OTH" ,
85
85
this . options ,
86
- false
87
- // new vscode.ThemeIcon("symbol-misc")
86
+ false ,
87
+ new vscode . ThemeIcon ( "symbol-misc" )
88
88
) ;
89
89
children . push ( node ) ;
90
90
0 commit comments