From 9ecb8cd381c29420fb86145c453bf74f5b9fbb71 Mon Sep 17 00:00:00 2001 From: Kelly Senna Date: Thu, 16 Nov 2017 14:16:25 -0500 Subject: [PATCH 1/2] Remove text referencing /src files --- content/docs/implementation-notes.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/content/docs/implementation-notes.md b/content/docs/implementation-notes.md index 86b1297ade0..26aa8c42753 100644 --- a/content/docs/implementation-notes.md +++ b/content/docs/implementation-notes.md @@ -14,8 +14,6 @@ It is very technical and assumes a strong understanding of React public API as w It also assumes an understanding of the [differences between React components, their instances, and elements](/blog/2015/12/18/react-components-elements-and-instances.html). -The stack reconciler is powering all the React production code today. It is located in [`src/renderers/shared/stack/reconciler`](https://github.com/facebook/react/tree/master/src/renderers/shared/stack) and is used by both React DOM and React Native. - ### Video: Building React from Scratch [Paul O'Shannessy](https://twitter.com/zpao) gave a talk about [building React from scratch](https://www.youtube.com/watch?v=_MAD4Oly9yg) that largely inspired this document. From f054caad45c40df09b41aa8b9184cbb306320dd5 Mon Sep 17 00:00:00 2001 From: Kelly Senna Date: Mon, 27 Nov 2017 11:44:29 -0500 Subject: [PATCH 2/2] Add link to stack reconciler on 15-stable branch --- content/docs/implementation-notes.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/docs/implementation-notes.md b/content/docs/implementation-notes.md index 26aa8c42753..1a204069aa5 100644 --- a/content/docs/implementation-notes.md +++ b/content/docs/implementation-notes.md @@ -14,6 +14,8 @@ It is very technical and assumes a strong understanding of React public API as w It also assumes an understanding of the [differences between React components, their instances, and elements](/blog/2015/12/18/react-components-elements-and-instances.html). +The stack reconciler was used in React 15 and earlier. It is located at [src/renderers/shared/stack/reconciler](https://github.com/facebook/react/tree/15-stable/src/renderers/shared/stack/reconciler). + ### Video: Building React from Scratch [Paul O'Shannessy](https://twitter.com/zpao) gave a talk about [building React from scratch](https://www.youtube.com/watch?v=_MAD4Oly9yg) that largely inspired this document.