|
1 |
| -# Implement New Feature |
| 1 | +# Implementing new features |
2 | 2 |
|
3 | 3 | When you want to implement a new significant feature in the compiler,
|
4 | 4 | you need to go through this process to make sure everything goes
|
5 | 5 | smoothly.
|
6 | 6 |
|
7 |
| -## The @rfcbot (p)FCP process |
| 7 | +## The @rfcbot FCP process |
8 | 8 |
|
9 | 9 | When the change is small and uncontroversial, then it can be done
|
10 |
| -with just writing a PR and getting r+ from someone who knows that |
| 10 | +with just writing a PR and getting an r+ from someone who knows that |
11 | 11 | part of the code. However, if the change is potentially controversial,
|
12 | 12 | it would be a bad idea to push it without consensus from the rest
|
13 | 13 | of the team (both in the "distributed system" sense to make sure
|
14 | 14 | you don't break anything you don't know about, and in the social
|
15 | 15 | sense to avoid PR fights).
|
16 | 16 |
|
17 |
| -If such a change seems to be too small to require a full formal RFC |
18 |
| -process (e.g. a big refactoring of the code, or a |
19 |
| -"technically-breaking" change, or a "big bugfix" that basically |
20 |
| -amounts to a small feature) but is still too controversial or |
21 |
| -big to get by with a single r+, you can start a pFCP (or, if you |
22 |
| -don't have r+ rights, ask someone who has them to start one - and |
23 |
| -unless they have a concern themselves, they should). pFCP stands for |
24 |
| -"proposed final comment period". |
25 |
| - |
26 |
| -Again, the pFCP process is only needed if you need consensus - if you |
27 |
| -don't think anyone would have a problem with your change, it's ok to |
| 17 | +If such a change seems to be too small to require a full formal RFC process |
| 18 | +(e.g., a small standard library addition, a big refactoring of the code, a |
| 19 | +"technically-breaking" change, or a "big bugfix" that basically amounts to a |
| 20 | +small feature) but is still too controversial or big to get by with a single r+, |
| 21 | +you can propose a final comment period (FCP). Or, if you're not on the relevant |
| 22 | +team (and thus don't have @rfcbot permissions), ask someone who is to start one; |
| 23 | +unless they have a concern themselves, they should. |
| 24 | + |
| 25 | +Again, the FCP process is only needed if you need consensus – if you |
| 26 | +don't think anyone would have a problem with your change, it's OK to |
28 | 27 | get by with only an r+. For example, it is OK to add or modify
|
29 |
| -unstable command-line flags or attributes without a pFCP for |
| 28 | +unstable command-line flags or attributes without an FCP for |
30 | 29 | compiler development or standard library use, as long as you don't
|
31 | 30 | expect them to be in wide use in the nightly ecosystem.
|
32 | 31 |
|
33 |
| -You don't need to have the implementation fully ready for r+ to ask |
34 |
| -for a pFCP, but it is generally a good idea to have at least a proof |
| 32 | +You don't need to have the implementation fully ready for r+ to propose an FCP, |
| 33 | +but it is generally a good idea to have at least a proof |
35 | 34 | of concept so that people can see what you are talking about.
|
36 | 35 |
|
37 |
| -When a pFCP is started, it requires all members of the team to sign off |
38 |
| -the FCP. After they all do so, there's a 10 day long "final comment |
39 |
| -period" where everybody can comment, and if no new concerns are raised, |
40 |
| -the PR/issue gets FCP approval. |
| 36 | +When an FCP is proposed, it requires all members of the team to sign off the |
| 37 | +FCP. After they all do so, there's a 10-day-long "final comment period" (hence |
| 38 | +the name) where everybody can comment, and if no concerns are raised, the |
| 39 | +PR/issue gets FCP approval. |
41 | 40 |
|
42 | 41 | ## The logistics of writing features
|
43 | 42 |
|
@@ -79,7 +78,6 @@ feature can be changed, or the feature might be completely
|
79 | 78 | rewritten or removed. Features are not supposed to gain tenure
|
80 | 79 | by being unstable and unchanged for a year.
|
81 | 80 |
|
82 |
| -<a name = "tracking-issue"></a> |
83 | 81 | ### Tracking Issues
|
84 | 82 |
|
85 | 83 | To keep track of the status of an unstable feature, the
|
@@ -111,7 +109,6 @@ for stabilization in a checklist, e.g.,
|
111 | 109 | - [ ] Stabilize the feature. ([See instructions on rustc-dev-guide.](https://rustc-dev-guide.rust-lang.org/stabilization_guide.html#stabilization-pr))
|
112 | 110 | ```
|
113 | 111 |
|
114 |
| -<a name="stability-in-code"></a> |
115 | 112 | ## Stability in code
|
116 | 113 |
|
117 | 114 | The below steps needs to be followed in order to implement
|
|
0 commit comments