+ );
+}
diff --git a/src/test/fixtures/function-scope-bug.jsx b/src/test/fixtures/function-scope-bug.jsx
index 57c783d87e..6c76e8fac7 100644
--- a/src/test/fixtures/function-scope-bug.jsx
+++ b/src/test/fixtures/function-scope-bug.jsx
@@ -14,7 +14,10 @@ var Bar = () => {
);
};
-// This is where it failed.
+// It failed while parsing this function.
+// The bug happened due to incorrectly modifying scopes_in_order
+// The fix was using tombstoning instead of deleting
+// The fix also resolved some performance issues.
var Baz = () => {
return (
diff --git a/src/test/fixtures/simple-150x.jsx b/src/test/fixtures/simple-150x.jsx
index 920e84ea50..385d28bab8 100644
--- a/src/test/fixtures/simple-150x.jsx
+++ b/src/test/fixtures/simple-150x.jsx
@@ -21,6 +21,7 @@ import LoginGate, { LOGIN_STATUSES } from "../components/LoginGate";
import Divider from "../components/Divider";
import { SPACING } from "../helpers/styles";
+// This is not saved in git 150x over because I don't want this repo to be huge.
(function () {
const FeaturedProfile = ({ profile }) => {
return (