@@ -20,25 +20,6 @@ let proposals
20
20
/** Array of language versions in which proposals have been implemented. */
21
21
let languageVersions
22
22
23
- /**
24
- * Mapping of proposal ids to upcoming feature flags.
25
- * Temporary until upcomingFeatureFlag property is returned in proposals.json.
26
- */
27
- const upcomingFeatureFlags = new Map ( [
28
- [ 'SE-0274' , { "flag" : 'ConciseMagicFile' } ] ,
29
- [ 'SE-0286' , { "flag" : 'ForwardTrailingClosures' } ] ,
30
- [ 'SE-0335' , { "flag" : 'ExistentialAny' } ] ,
31
- [ 'SE-0354' , { "flag" : 'BareSlashRegexLiterals' } ] ,
32
- [ 'SE-0383' , { "flag" : 'DeprecateApplicationMain' } ] ,
33
- [ 'SE-0384' , { "flag" : 'ImportObjcForwardDeclarations' } ] ,
34
- [ 'SE-0401' , { "flag" : 'DisableOutwardActorInference' } ] ,
35
- [ 'SE-0409' , { "flag" : 'InternalImportsByDefault' } ] ,
36
- [ 'SE-0411' , { "flag" : 'IsolatedDefaultValues' } ] ,
37
- [ 'SE-0413' , { "flag" : 'FullTypedThrows' } ] ,
38
- [ 'SE-0418' , { "flag" : 'InferSendableFromCaptures' } ] ,
39
- [ 'SE-0423' , { "flag" : 'DynamicActorIsolation' } ] ,
40
- ] )
41
-
42
23
/** Storage for the user's current selection of filters when filtering is toggled off. */
43
24
let filterSelection = [ ]
44
25
@@ -140,14 +121,6 @@ function init() {
140
121
proposals = proposals . filter ( function ( proposal ) {
141
122
return ! proposal . errors
142
123
} )
143
-
144
- // Add upcomingFeatureFlag to proposal if present in mapping.
145
- // Temporary until upcomingFeatureFlag property is returned in proposals.json.
146
- for ( var proposal of proposals ) {
147
- if ( upcomingFeatureFlags . has ( proposal . id ) ) {
148
- proposal . upcomingFeatureFlag = upcomingFeatureFlags . get ( proposal . id )
149
- }
150
- }
151
124
152
125
// Descending numeric sort based the numeric nnnn in a proposal ID's SE-nnnn
153
126
proposals . sort ( function compareProposalIDs ( p1 , p2 ) {
0 commit comments