File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -119,6 +119,16 @@ impl Data {
119
119
. filter_map ( |team| Some ( ( team. name . clone ( ) , team. subteam_of . clone ( ) ?) ) )
120
120
. collect ( ) ;
121
121
122
+ // Phased out T-compiler Working Groups
123
+ let phased_out_compiler_wgs = [
124
+ "wg-meta" . to_string ( ) ,
125
+ "wg-nll" . to_string ( ) ,
126
+ "wg-polymorphization" . to_string ( ) ,
127
+ "wg-prioritization" . to_string ( ) ,
128
+ "wg-self-profile" . to_string ( ) ,
129
+ "wg-traits" . to_string ( ) ,
130
+ ] ;
131
+
122
132
self . teams
123
133
. into_iter ( )
124
134
. filter ( |team| team. website_data . is_some ( ) )
@@ -140,7 +150,11 @@ impl Data {
140
150
} )
141
151
. for_each ( |team| match team. kind {
142
152
TeamKind :: Team => raw_subteams. push ( team) ,
143
- TeamKind :: WorkingGroup => wgs. push ( team) ,
153
+ TeamKind :: WorkingGroup => {
154
+ if !phased_out_compiler_wgs. contains ( & team. name ) {
155
+ wgs. push ( team)
156
+ }
157
+ }
144
158
TeamKind :: ProjectGroup => project_groups. push ( team) ,
145
159
_ => { }
146
160
} ) ;
You can’t perform that action at this time.
0 commit comments