dillon1000/react
Commit
Browse files s/Forget/React Compiler/ in Rust port
Changed paths1151 files
First-parent comparisoncompiler/Cargo.lock ModifiedM compiler/Cargo.toml ModifiedM compiler/README.md ModifiedD compiler/crates/forget_build_hir/README.md DeletedD compiler/crates/forget_estree/README.md DeletedD compiler/crates/forget_estree/build.rs DeletedD compiler/crates/forget_estree_codegen/README.md DeletedD compiler/crates/forget_hermes_parser/build.rs DeletedD compiler/crates/forget_ssa/README.md DeletedR compiler/crates/forget_build_hir/Cargo.toml →compiler/crates/react_build_hir/Cargo.toml RenamedA compiler/crates/react_build_hir/README.md AddedR compiler/crates/forget_build_hir/src/build.rs →compiler/crates/react_build_hir/src/build.rs RenamedR compiler/crates/forget_build_hir/src/builder.rs →compiler/crates/react_build_hir/src/builder.rs RenamedR compiler/crates/forget_build_hir/src/context.rs →compiler/crates/react_build_hir/src/context.rs RenamedR compiler/crates/forget_build_hir/src/error.rs →compiler/crates/react_build_hir/src/error.rs RenamedR compiler/crates/forget_build_hir/src/lib.rs →compiler/crates/react_build_hir/src/lib.rs RenamedR compiler/crates/forget_diagnostics/Cargo.toml →compiler/crates/react_diagnostics/Cargo.toml RenamedR compiler/crates/forget_diagnostics/README.md →compiler/crates/react_diagnostics/README.md RenamedR compiler/crates/forget_diagnostics/src/diagnostic.rs →compiler/crates/react_diagnostics/src/diagnostic.rs RenamedR compiler/crates/forget_diagnostics/src/lib.rs →compiler/crates/react_diagnostics/src/lib.rs RenamedR compiler/crates/forget_estree/Cargo.toml →compiler/crates/react_estree/Cargo.toml RenamedA compiler/crates/react_estree/README.md AddedA compiler/crates/react_estree/build.rs AddedR compiler/crates/forget_estree/src/binding.rs →compiler/crates/react_estree/src/binding.rs RenamedR compiler/crates/forget_estree/src/fixtures/for-statement.json →compiler/crates/react_estree/src/fixtures/for-statement.json RenamedR compiler/crates/forget_estree/src/fixtures/import.json →compiler/crates/react_estree/src/fixtures/import.json RenamedR compiler/crates/forget_estree/src/fixtures/simple.json →compiler/crates/react_estree/src/fixtures/simple.json RenamedR compiler/crates/forget_estree/src/fixtures/test.json →compiler/crates/react_estree/src/fixtures/test.json RenamedR compiler/crates/forget_estree/src/generated.rs →compiler/crates/react_estree/src/generated.rs RenamedR compiler/crates/forget_estree/src/generated_extensions.rs →compiler/crates/react_estree/src/generated_extensions.rs RenamedR compiler/crates/forget_estree/src/js_value.rs →compiler/crates/react_estree/src/js_value.rs RenamedR compiler/crates/forget_estree/src/lib.rs →compiler/crates/react_estree/src/lib.rs RenamedR compiler/crates/forget_estree/src/range.rs →compiler/crates/react_estree/src/range.rs RenamedR compiler/crates/forget_estree/src/snapshots/[email protected] →compiler/crates/react_estree/src/snapshots/[email protected] RenamedR compiler/crates/forget_estree/src/snapshots/[email protected] →compiler/crates/react_estree/src/snapshots/[email protected] RenamedR compiler/crates/forget_estree/src/snapshots/[email protected] →compiler/crates/react_estree/src/snapshots/[email protected] RenamedR compiler/crates/forget_estree/src/snapshots/[email protected] →compiler/crates/react_estree/src/snapshots/[email protected] RenamedA compiler/crates/react_estree/src/snapshots/[email protected] AddedA compiler/crates/react_estree/src/snapshots/[email protected] AddedA compiler/crates/react_estree/src/snapshots/[email protected] AddedA compiler/crates/react_estree/src/snapshots/[email protected] AddedR compiler/crates/forget_estree/src/visit.rs →compiler/crates/react_estree/src/visit.rs RenamedR compiler/crates/forget_estree_codegen/Cargo.toml →compiler/crates/react_estree_codegen/Cargo.toml RenamedA compiler/crates/react_estree_codegen/README.md AddedR compiler/crates/forget_estree_codegen/src/codegen.rs →compiler/crates/react_estree_codegen/src/codegen.rs RenamedR compiler/crates/forget_estree_codegen/src/ecmascript.json →compiler/crates/react_estree_codegen/src/ecmascript.json RenamedR compiler/crates/forget_estree_codegen/src/lib.rs →compiler/crates/react_estree_codegen/src/lib.rs RenamedR compiler/crates/forget_fixtures/Cargo.toml →compiler/crates/react_fixtures/Cargo.toml RenamedR compiler/crates/forget_fixtures/README.md →compiler/crates/react_fixtures/README.md RenamedR compiler/crates/forget_fixtures/src/lib.rs →compiler/crates/react_fixtures/src/lib.rs RenamedR compiler/crates/forget_fixtures/tests/fixtures/constant-propagation-constant-if-condition.js →compiler/crates/react_fixtures/tests/fixtures/constant-propagation-constant-if-condition.js RenamedR compiler/crates/forget_fixtures/tests/fixtures/constant-propagation.js →compiler/crates/react_fixtures/tests/fixtures/constant-propagation.js RenamedR compiler/crates/forget_fixtures/tests/fixtures/destructure-array.js →compiler/crates/react_fixtures/tests/fixtures/destructure-array.js RenamedR compiler/crates/forget_fixtures/tests/fixtures/destructure-object.js →compiler/crates/react_fixtures/tests/fixtures/destructure-object.js RenamedR compiler/crates/forget_fixtures/tests/fixtures/error.assign-to-global.js →compiler/crates/react_fixtures/tests/fixtures/error.assign-to-global.js RenamedR compiler/crates/forget_fixtures/tests/fixtures/for-statement.js →compiler/crates/react_fixtures/tests/fixtures/for-statement.js RenamedR compiler/crates/forget_fixtures/tests/fixtures/function-expressions.js →compiler/crates/react_fixtures/tests/fixtures/function-expressions.js RenamedR compiler/crates/forget_fixtures/tests/fixtures/identifiers.js →compiler/crates/react_fixtures/tests/fixtures/identifiers.js RenamedR compiler/crates/forget_fixtures/tests/fixtures/if-statement.js →compiler/crates/react_fixtures/tests/fixtures/if-statement.js RenamedR compiler/crates/forget_fixtures/tests/fixtures/simple-function.js →compiler/crates/react_fixtures/tests/fixtures/simple-function.js RenamedR compiler/crates/forget_fixtures/tests/fixtures/simple-ssa.js →compiler/crates/react_fixtures/tests/fixtures/simple-ssa.js RenamedR compiler/crates/forget_fixtures/tests/fixtures/simple.js →compiler/crates/react_fixtures/tests/fixtures/simple.js RenamedR compiler/crates/forget_fixtures/tests/fixtures/ssa-reassign-if.js →compiler/crates/react_fixtures/tests/fixtures/ssa-reassign-if.js RenamedR compiler/crates/forget_fixtures/tests/fixtures/use-memo.js →compiler/crates/react_fixtures/tests/fixtures/use-memo.js RenamedR compiler/crates/forget_fixtures/tests/fixtures_test.rs →compiler/crates/react_fixtures/tests/fixtures_test.rs RenamedR compiler/crates/forget_fixtures/tests/snapshots/fixtures_test__fixtures@constant-propagation-constant-if-condition.js.snap →compiler/crates/react_fixtures/tests/snapshots/fixtures_test__fixtures@constant-propagation-constant-if-condition.js.snap RenamedR compiler/crates/forget_fixtures/tests/snapshots/[email protected] →compiler/crates/react_fixtures/tests/snapshots/[email protected] RenamedR compiler/crates/forget_fixtures/tests/snapshots/[email protected] →compiler/crates/react_fixtures/tests/snapshots/[email protected] RenamedR compiler/crates/forget_fixtures/tests/snapshots/[email protected] →compiler/crates/react_fixtures/tests/snapshots/[email protected] RenamedR compiler/crates/forget_fixtures/tests/snapshots/[email protected] →compiler/crates/react_fixtures/tests/snapshots/[email protected] RenamedR compiler/crates/forget_fixtures/tests/snapshots/[email protected] →compiler/crates/react_fixtures/tests/snapshots/[email protected] RenamedR compiler/crates/forget_fixtures/tests/snapshots/[email protected] →compiler/crates/react_fixtures/tests/snapshots/[email protected] RenamedR compiler/crates/forget_fixtures/tests/snapshots/[email protected] →compiler/crates/react_fixtures/tests/snapshots/[email protected] RenamedR compiler/crates/forget_fixtures/tests/snapshots/[email protected] →compiler/crates/react_fixtures/tests/snapshots/[email protected] RenamedR compiler/crates/forget_fixtures/tests/snapshots/[email protected] →compiler/crates/react_fixtures/tests/snapshots/[email protected] RenamedR compiler/crates/forget_fixtures/tests/snapshots/[email protected] →compiler/crates/react_fixtures/tests/snapshots/[email protected] RenamedR compiler/crates/forget_fixtures/tests/snapshots/[email protected] →compiler/crates/react_fixtures/tests/snapshots/[email protected] RenamedR compiler/crates/forget_fixtures/tests/snapshots/[email protected] →compiler/crates/react_fixtures/tests/snapshots/[email protected] RenamedR compiler/crates/forget_fixtures/tests/snapshots/[email protected] →compiler/crates/react_fixtures/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/Cargo.toml →compiler/crates/react_hermes_parser/Cargo.toml RenamedR compiler/crates/forget_hermes_parser/README.md →compiler/crates/react_hermes_parser/README.md RenamedA compiler/crates/react_hermes_parser/build.rs AddedR compiler/crates/forget_hermes_parser/src/generated.rs →compiler/crates/react_hermes_parser/src/generated.rs RenamedR compiler/crates/forget_hermes_parser/src/generated_extension.rs →compiler/crates/react_hermes_parser/src/generated_extension.rs RenamedR compiler/crates/forget_hermes_parser/src/lib.rs →compiler/crates/react_hermes_parser/src/lib.rs RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/alias-capture-in-method-receiver-and-mutate.js →compiler/crates/react_hermes_parser/tests/fixtures/alias-capture-in-method-receiver-and-mutate.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/alias-capture-in-method-receiver.js →compiler/crates/react_hermes_parser/tests/fixtures/alias-capture-in-method-receiver.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/alias-computed-load.js →compiler/crates/react_hermes_parser/tests/fixtures/alias-computed-load.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/alias-nested-member-path-mutate.js →compiler/crates/react_hermes_parser/tests/fixtures/alias-nested-member-path-mutate.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/alias-nested-member-path.js →compiler/crates/react_hermes_parser/tests/fixtures/alias-nested-member-path.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/alias-while.js →compiler/crates/react_hermes_parser/tests/fixtures/alias-while.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/allocating-primitive-as-dep-nested-scope.js →compiler/crates/react_hermes_parser/tests/fixtures/allocating-primitive-as-dep-nested-scope.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/allocating-primitive-as-dep.js →compiler/crates/react_hermes_parser/tests/fixtures/allocating-primitive-as-dep.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/allow-passing-refs-as-props.js →compiler/crates/react_hermes_parser/tests/fixtures/allow-passing-refs-as-props.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/array-access-assignment.js →compiler/crates/react_hermes_parser/tests/fixtures/array-access-assignment.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/array-at-closure.js →compiler/crates/react_hermes_parser/tests/fixtures/array-at-closure.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/array-at-effect.js →compiler/crates/react_hermes_parser/tests/fixtures/array-at-effect.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/array-at-mutate-after-capture.js →compiler/crates/react_hermes_parser/tests/fixtures/array-at-mutate-after-capture.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/array-expression-spread.js →compiler/crates/react_hermes_parser/tests/fixtures/array-expression-spread.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/array-join.js →compiler/crates/react_hermes_parser/tests/fixtures/array-join.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/array-map-frozen-array.js →compiler/crates/react_hermes_parser/tests/fixtures/array-map-frozen-array.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/array-map-mutable-array-mutating-lambda.js →compiler/crates/react_hermes_parser/tests/fixtures/array-map-mutable-array-mutating-lambda.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/array-pattern-params.js →compiler/crates/react_hermes_parser/tests/fixtures/array-pattern-params.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/array-properties.js →compiler/crates/react_hermes_parser/tests/fixtures/array-properties.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/array-property-call.js →compiler/crates/react_hermes_parser/tests/fixtures/array-property-call.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/array-push-effect.js →compiler/crates/react_hermes_parser/tests/fixtures/array-push-effect.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/arrow-function-expr-gating-test.js →compiler/crates/react_hermes_parser/tests/fixtures/arrow-function-expr-gating-test.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/assignment-expression-computed.js →compiler/crates/react_hermes_parser/tests/fixtures/assignment-expression-computed.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/assignment-expression-nested-path.js →compiler/crates/react_hermes_parser/tests/fixtures/assignment-expression-nested-path.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/assignment-in-nested-if.js →compiler/crates/react_hermes_parser/tests/fixtures/assignment-in-nested-if.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/assignment-variations-complex-lvalue-array.js →compiler/crates/react_hermes_parser/tests/fixtures/assignment-variations-complex-lvalue-array.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/assignment-variations-complex-lvalue.js →compiler/crates/react_hermes_parser/tests/fixtures/assignment-variations-complex-lvalue.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/assignment-variations.js →compiler/crates/react_hermes_parser/tests/fixtures/assignment-variations.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/await-side-effecting-promise.js →compiler/crates/react_hermes_parser/tests/fixtures/await-side-effecting-promise.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/await.js →compiler/crates/react_hermes_parser/tests/fixtures/await.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/babel-existing-react-import.js →compiler/crates/react_hermes_parser/tests/fixtures/babel-existing-react-import.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/babel-existing-react-kitchensink-import.js →compiler/crates/react_hermes_parser/tests/fixtures/babel-existing-react-kitchensink-import.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/bug.useMemo-deps-array-not-cleared.js →compiler/crates/react_hermes_parser/tests/fixtures/bug.useMemo-deps-array-not-cleared.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/bug_object-pattern.js →compiler/crates/react_hermes_parser/tests/fixtures/bug_object-pattern.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/builtin-jsx-tag-lowered-between-mutations.js →compiler/crates/react_hermes_parser/tests/fixtures/builtin-jsx-tag-lowered-between-mutations.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/call-args-assignment.js →compiler/crates/react_hermes_parser/tests/fixtures/call-args-assignment.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/call-args-destructuring-assignment.js →compiler/crates/react_hermes_parser/tests/fixtures/call-args-destructuring-assignment.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/call-spread.js →compiler/crates/react_hermes_parser/tests/fixtures/call-spread.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/call-with-independently-memoizable-arg.js →compiler/crates/react_hermes_parser/tests/fixtures/call-with-independently-memoizable-arg.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/call.js →compiler/crates/react_hermes_parser/tests/fixtures/call.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capture-indirect-mutate-alias.js →compiler/crates/react_hermes_parser/tests/fixtures/capture-indirect-mutate-alias.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capture-param-mutate.js →compiler/crates/react_hermes_parser/tests/fixtures/capture-param-mutate.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capture_mutate-across-fns.js →compiler/crates/react_hermes_parser/tests/fixtures/capture_mutate-across-fns.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-arrow-function-1.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-arrow-function-1.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-fun-alias-captured-mutate-2.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-fun-alias-captured-mutate-2.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-fun-alias-captured-mutate-arr-2.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-fun-alias-captured-mutate-arr-2.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-func-alias-captured-mutate-arr.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-func-alias-captured-mutate-arr.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-func-alias-captured-mutate.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-func-alias-captured-mutate.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-func-alias-computed-mutate.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-func-alias-computed-mutate.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-func-alias-mutate.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-func-alias-mutate.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-func-alias-receiver-computed-mutate.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-func-alias-receiver-computed-mutate.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-func-alias-receiver-mutate.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-func-alias-receiver-mutate.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-func-mutate-2.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-func-mutate-2.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-func-mutate-3.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-func-mutate-3.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-func-mutate-nested.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-func-mutate-nested.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-func-mutate.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-func-mutate.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-func-simple-alias.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-func-simple-alias.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-function-1.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-function-1.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-function-alias-computed-load-2.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-function-alias-computed-load-2.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-function-alias-computed-load-3.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-function-alias-computed-load-3.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-function-alias-computed-load-4.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-function-alias-computed-load-4.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-function-alias-computed-load.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-function-alias-computed-load.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-function-capture-ref-before-rename.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-function-capture-ref-before-rename.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-function-conditional-capture-mutate.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-function-conditional-capture-mutate.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-function-decl.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-function-decl.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-function-member-expr-arguments.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-function-member-expr-arguments.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-function-member-expr-call.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-function-member-expr-call.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-function-renamed-ref.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-function-renamed-ref.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-function-runs-inference.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-function-runs-inference.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-function-shadow-captured.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-function-shadow-captured.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-function-skip-computed-path.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-function-skip-computed-path.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-function-within-block.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-function-within-block.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-member-expr.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-member-expr.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-nested-member-call.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-nested-member-call.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-nested-member-expr-in-nested-func.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-nested-member-expr-in-nested-func.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-nested-member-expr.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-nested-member-expr.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-reference-changes-type.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-reference-changes-type.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-variable-in-nested-block.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-variable-in-nested-block.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/capturing-variable-in-nested-function.js →compiler/crates/react_hermes_parser/tests/fixtures/capturing-variable-in-nested-function.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/chained-assignment-context-variable.js →compiler/crates/react_hermes_parser/tests/fixtures/chained-assignment-context-variable.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/chained-assignment-expressions.js →compiler/crates/react_hermes_parser/tests/fixtures/chained-assignment-expressions.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/codegen-emit-imports-same-source.js →compiler/crates/react_hermes_parser/tests/fixtures/codegen-emit-imports-same-source.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/codegen-emit-make-read-only.js →compiler/crates/react_hermes_parser/tests/fixtures/codegen-emit-make-read-only.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/codegen-instrument-forget-gating-test.js →compiler/crates/react_hermes_parser/tests/fixtures/codegen-instrument-forget-gating-test.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/codegen-instrument-forget-test.js →compiler/crates/react_hermes_parser/tests/fixtures/codegen-instrument-forget-test.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/complex-while.js →compiler/crates/react_hermes_parser/tests/fixtures/complex-while.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/component.js →compiler/crates/react_hermes_parser/tests/fixtures/component.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/computed-call-evaluation-order.js →compiler/crates/react_hermes_parser/tests/fixtures/computed-call-evaluation-order.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/computed-call-spread.js →compiler/crates/react_hermes_parser/tests/fixtures/computed-call-spread.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/computed-load-primitive-as-dependency.js →compiler/crates/react_hermes_parser/tests/fixtures/computed-load-primitive-as-dependency.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/computed-store-alias.js →compiler/crates/react_hermes_parser/tests/fixtures/computed-store-alias.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/concise-arrow-expr.js →compiler/crates/react_hermes_parser/tests/fixtures/concise-arrow-expr.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/cond-deps-conditional-member-expr.js →compiler/crates/react_hermes_parser/tests/fixtures/cond-deps-conditional-member-expr.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/conditional-break-labeled.js →compiler/crates/react_hermes_parser/tests/fixtures/conditional-break-labeled.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/conditional-break.js →compiler/crates/react_hermes_parser/tests/fixtures/conditional-break.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/conditional-on-mutable.js →compiler/crates/react_hermes_parser/tests/fixtures/conditional-on-mutable.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/conditional-set-state-in-render.js →compiler/crates/react_hermes_parser/tests/fixtures/conditional-set-state-in-render.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/console-readonly.js →compiler/crates/react_hermes_parser/tests/fixtures/console-readonly.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/const-propagation-into-function-expression-global.js →compiler/crates/react_hermes_parser/tests/fixtures/const-propagation-into-function-expression-global.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/const-propagation-into-function-expression-primitive.js →compiler/crates/react_hermes_parser/tests/fixtures/const-propagation-into-function-expression-primitive.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/constant-computed.js →compiler/crates/react_hermes_parser/tests/fixtures/constant-computed.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/constant-propagation-for.js →compiler/crates/react_hermes_parser/tests/fixtures/constant-propagation-for.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/constant-propagation-into-function-expressions.js →compiler/crates/react_hermes_parser/tests/fixtures/constant-propagation-into-function-expressions.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/constant-propagation-phi.js →compiler/crates/react_hermes_parser/tests/fixtures/constant-propagation-phi.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/constant-propagation-while.js →compiler/crates/react_hermes_parser/tests/fixtures/constant-propagation-while.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/constant-propagation.js →compiler/crates/react_hermes_parser/tests/fixtures/constant-propagation.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/constructor.js →compiler/crates/react_hermes_parser/tests/fixtures/constructor.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/context-variable-reassigned-outside-of-lambda.js →compiler/crates/react_hermes_parser/tests/fixtures/context-variable-reassigned-outside-of-lambda.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/controlled-input.js →compiler/crates/react_hermes_parser/tests/fixtures/controlled-input.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/dce-loop.js →compiler/crates/react_hermes_parser/tests/fixtures/dce-loop.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/debugger-memoized.js →compiler/crates/react_hermes_parser/tests/fixtures/debugger-memoized.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/debugger.js →compiler/crates/react_hermes_parser/tests/fixtures/debugger.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/declare-reassign-variable-in-closure.js →compiler/crates/react_hermes_parser/tests/fixtures/declare-reassign-variable-in-closure.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/declare-reassign-variable-in-function-declaration.js →compiler/crates/react_hermes_parser/tests/fixtures/declare-reassign-variable-in-function-declaration.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/delete-computed-property.js →compiler/crates/react_hermes_parser/tests/fixtures/delete-computed-property.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/delete-property.js →compiler/crates/react_hermes_parser/tests/fixtures/delete-property.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/dependencies-outputs.js →compiler/crates/react_hermes_parser/tests/fixtures/dependencies-outputs.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/dependencies.js →compiler/crates/react_hermes_parser/tests/fixtures/dependencies.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/destructure-capture-global.js →compiler/crates/react_hermes_parser/tests/fixtures/destructure-capture-global.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/destructure-direct-reassignment.js →compiler/crates/react_hermes_parser/tests/fixtures/destructure-direct-reassignment.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/destructuring-array-default.js →compiler/crates/react_hermes_parser/tests/fixtures/destructuring-array-default.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/destructuring-array-param-default.js →compiler/crates/react_hermes_parser/tests/fixtures/destructuring-array-param-default.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/destructuring-assignment-array-default.js →compiler/crates/react_hermes_parser/tests/fixtures/destructuring-assignment-array-default.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/destructuring-assignment.js →compiler/crates/react_hermes_parser/tests/fixtures/destructuring-assignment.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/destructuring-mixed-scope-and-local-variables-with-default.js →compiler/crates/react_hermes_parser/tests/fixtures/destructuring-mixed-scope-and-local-variables-with-default.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/destructuring-mixed-scope-declarations-and-locals.js →compiler/crates/react_hermes_parser/tests/fixtures/destructuring-mixed-scope-declarations-and-locals.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/destructuring-object-default.js →compiler/crates/react_hermes_parser/tests/fixtures/destructuring-object-default.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/destructuring-object-param-default.js →compiler/crates/react_hermes_parser/tests/fixtures/destructuring-object-param-default.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/destructuring-property-inference.js →compiler/crates/react_hermes_parser/tests/fixtures/destructuring-property-inference.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/destructuring.js →compiler/crates/react_hermes_parser/tests/fixtures/destructuring.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/disable-jsx-memoization.js →compiler/crates/react_hermes_parser/tests/fixtures/disable-jsx-memoization.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/do-while-break.js →compiler/crates/react_hermes_parser/tests/fixtures/do-while-break.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/do-while-compound-test.js →compiler/crates/react_hermes_parser/tests/fixtures/do-while-compound-test.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/do-while-conditional-break.js →compiler/crates/react_hermes_parser/tests/fixtures/do-while-conditional-break.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/do-while-continue.js →compiler/crates/react_hermes_parser/tests/fixtures/do-while-continue.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/do-while-early-unconditional-break.js →compiler/crates/react_hermes_parser/tests/fixtures/do-while-early-unconditional-break.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/do-while-simple.js →compiler/crates/react_hermes_parser/tests/fixtures/do-while-simple.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/dominator.js →compiler/crates/react_hermes_parser/tests/fixtures/dominator.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/early-return.js →compiler/crates/react_hermes_parser/tests/fixtures/early-return.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error._todo.computed-lval-in-destructure.js →compiler/crates/react_hermes_parser/tests/fixtures/error._todo.computed-lval-in-destructure.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error._todo.multi-arrow-expr-export-default-gating-test.js →compiler/crates/react_hermes_parser/tests/fixtures/error._todo.multi-arrow-expr-export-default-gating-test.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.babel-existing-react-namespace-import.js →compiler/crates/react_hermes_parser/tests/fixtures/error.babel-existing-react-namespace-import.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.bug-validate-no-set-state-not-all-mutable-range-extensions-are-bad.js →compiler/crates/react_hermes_parser/tests/fixtures/error.bug-validate-no-set-state-not-all-mutable-range-extensions-are-bad.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.call-args-destructuring-asignment-complex.js →compiler/crates/react_hermes_parser/tests/fixtures/error.call-args-destructuring-asignment-complex.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.codegen-error-on-conflicting-imports.js →compiler/crates/react_hermes_parser/tests/fixtures/error.codegen-error-on-conflicting-imports.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.hoisted-function-declaration.js →compiler/crates/react_hermes_parser/tests/fixtures/error.hoisted-function-declaration.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.hooks-with-React-namespace.js →compiler/crates/react_hermes_parser/tests/fixtures/error.hooks-with-React-namespace.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.invalid-access-ref-during-render.js →compiler/crates/react_hermes_parser/tests/fixtures/error.invalid-access-ref-during-render.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.invalid-array-push-frozen.js →compiler/crates/react_hermes_parser/tests/fixtures/error.invalid-array-push-frozen.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.invalid-assign-hook-to-local.js →compiler/crates/react_hermes_parser/tests/fixtures/error.invalid-assign-hook-to-local.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.invalid-capture-func-passed-to-jsx.js →compiler/crates/react_hermes_parser/tests/fixtures/error.invalid-capture-func-passed-to-jsx.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.invalid-computed-store-to-frozen-value.js →compiler/crates/react_hermes_parser/tests/fixtures/error.invalid-computed-store-to-frozen-value.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.invalid-delete-computed-property-of-frozen-value.js →compiler/crates/react_hermes_parser/tests/fixtures/error.invalid-delete-computed-property-of-frozen-value.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.invalid-delete-property-of-frozen-value.js →compiler/crates/react_hermes_parser/tests/fixtures/error.invalid-delete-property-of-frozen-value.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.invalid-destructure-assignment-to-global.js →compiler/crates/react_hermes_parser/tests/fixtures/error.invalid-destructure-assignment-to-global.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.invalid-destructure-to-local-global-variables.js →compiler/crates/react_hermes_parser/tests/fixtures/error.invalid-destructure-to-local-global-variables.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.invalid-freeze-conditionally-mutable-lambda.js →compiler/crates/react_hermes_parser/tests/fixtures/error.invalid-freeze-conditionally-mutable-lambda.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.invalid-freeze-mutable-lambda-mutate-local.js →compiler/crates/react_hermes_parser/tests/fixtures/error.invalid-freeze-mutable-lambda-mutate-local.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.invalid-freeze-mutable-lambda-reassign-local.js →compiler/crates/react_hermes_parser/tests/fixtures/error.invalid-freeze-mutable-lambda-reassign-local.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.invalid-function-expression-mutates-immutable-value.js →compiler/crates/react_hermes_parser/tests/fixtures/error.invalid-function-expression-mutates-immutable-value.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.invalid-mutate-after-aliased-freeze.js →compiler/crates/react_hermes_parser/tests/fixtures/error.invalid-mutate-after-aliased-freeze.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.invalid-mutate-after-freeze.js →compiler/crates/react_hermes_parser/tests/fixtures/error.invalid-mutate-after-freeze.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.invalid-pass-hook-as-call-arg.js →compiler/crates/react_hermes_parser/tests/fixtures/error.invalid-pass-hook-as-call-arg.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.invalid-pass-hook-as-prop.js →compiler/crates/react_hermes_parser/tests/fixtures/error.invalid-pass-hook-as-prop.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.invalid-pass-ref-to-function.js →compiler/crates/react_hermes_parser/tests/fixtures/error.invalid-pass-ref-to-function.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.invalid-property-store-to-frozen-value.js →compiler/crates/react_hermes_parser/tests/fixtures/error.invalid-property-store-to-frozen-value.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.invalid-ref-in-callback-invoked-during-render.js →compiler/crates/react_hermes_parser/tests/fixtures/error.invalid-ref-in-callback-invoked-during-render.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.invalid-ref-value-as-props.js →compiler/crates/react_hermes_parser/tests/fixtures/error.invalid-ref-value-as-props.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.invalid-set-and-read-ref-during-render.js →compiler/crates/react_hermes_parser/tests/fixtures/error.invalid-set-and-read-ref-during-render.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.invalid-sketchy-code-use-forget.js →compiler/crates/react_hermes_parser/tests/fixtures/error.invalid-sketchy-code-use-forget.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.invalid-ternary-with-hook-values.js →compiler/crates/react_hermes_parser/tests/fixtures/error.invalid-ternary-with-hook-values.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.invalid-unconditional-set-state-in-render.js →compiler/crates/react_hermes_parser/tests/fixtures/error.invalid-unconditional-set-state-in-render.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.invalid-use-ref-added-to-dep-without-type-info.js →compiler/crates/react_hermes_parser/tests/fixtures/error.invalid-use-ref-added-to-dep-without-type-info.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.invalid-useMemo-async-callback.js →compiler/crates/react_hermes_parser/tests/fixtures/error.invalid-useMemo-async-callback.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.invalid-useMemo-callback-args.js →compiler/crates/react_hermes_parser/tests/fixtures/error.invalid-useMemo-callback-args.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.mutate-captured-arg-separately.js →compiler/crates/react_hermes_parser/tests/fixtures/error.mutate-captured-arg-separately.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.mutate-global-increment-op-invalid-react.js →compiler/crates/react_hermes_parser/tests/fixtures/error.mutate-global-increment-op-invalid-react.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.reassignment-to-global.js →compiler/crates/react_hermes_parser/tests/fixtures/error.reassignment-to-global.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.todo-kitchensink.js →compiler/crates/react_hermes_parser/tests/fixtures/error.todo-kitchensink.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.todo-unconditional-set-state-lambda.js →compiler/crates/react_hermes_parser/tests/fixtures/error.todo-unconditional-set-state-lambda.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.todo.destructure-assignment-to-context-var.js →compiler/crates/react_hermes_parser/tests/fixtures/error.todo.destructure-assignment-to-context-var.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.useMemo-callback-generator.js →compiler/crates/react_hermes_parser/tests/fixtures/error.useMemo-callback-generator.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/error.while-with-assignment-in-test.js →compiler/crates/react_hermes_parser/tests/fixtures/error.while-with-assignment-in-test.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/escape-analysis-destructured-rest-element.js →compiler/crates/react_hermes_parser/tests/fixtures/escape-analysis-destructured-rest-element.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/escape-analysis-jsx-child.js →compiler/crates/react_hermes_parser/tests/fixtures/escape-analysis-jsx-child.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/escape-analysis-logical.js →compiler/crates/react_hermes_parser/tests/fixtures/escape-analysis-logical.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/escape-analysis-non-escaping-interleaved-allocating-dependency.js →compiler/crates/react_hermes_parser/tests/fixtures/escape-analysis-non-escaping-interleaved-allocating-dependency.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/escape-analysis-non-escaping-interleaved-allocating-nested-dependency.js →compiler/crates/react_hermes_parser/tests/fixtures/escape-analysis-non-escaping-interleaved-allocating-nested-dependency.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/escape-analysis-non-escaping-interleaved-primitive-dependency.js →compiler/crates/react_hermes_parser/tests/fixtures/escape-analysis-non-escaping-interleaved-primitive-dependency.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/escape-analysis-not-conditional-test.js →compiler/crates/react_hermes_parser/tests/fixtures/escape-analysis-not-conditional-test.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/escape-analysis-not-if-test.js →compiler/crates/react_hermes_parser/tests/fixtures/escape-analysis-not-if-test.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/escape-analysis-not-switch-case.js →compiler/crates/react_hermes_parser/tests/fixtures/escape-analysis-not-switch-case.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/escape-analysis-not-switch-test.js →compiler/crates/react_hermes_parser/tests/fixtures/escape-analysis-not-switch-test.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/expression-with-assignment-dynamic.js →compiler/crates/react_hermes_parser/tests/fixtures/expression-with-assignment-dynamic.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/expression-with-assignment.js →compiler/crates/react_hermes_parser/tests/fixtures/expression-with-assignment.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/extend-scopes-if.js →compiler/crates/react_hermes_parser/tests/fixtures/extend-scopes-if.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/fbt-call-complex-param-value.js →compiler/crates/react_hermes_parser/tests/fixtures/fbt-call-complex-param-value.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/fbt-call.js →compiler/crates/react_hermes_parser/tests/fixtures/fbt-call.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/fbt-params-complex-param-value.js →compiler/crates/react_hermes_parser/tests/fixtures/fbt-params-complex-param-value.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/fbt-params.js →compiler/crates/react_hermes_parser/tests/fixtures/fbt-params.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/fbt-template-string-same-scope.js →compiler/crates/react_hermes_parser/tests/fixtures/fbt-template-string-same-scope.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/for-empty-update-with-continue.js →compiler/crates/react_hermes_parser/tests/fixtures/for-empty-update-with-continue.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/for-empty-update.js →compiler/crates/react_hermes_parser/tests/fixtures/for-empty-update.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/for-logical.js →compiler/crates/react_hermes_parser/tests/fixtures/for-logical.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/for-of-break.js →compiler/crates/react_hermes_parser/tests/fixtures/for-of-break.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/for-of-conditional-break.js →compiler/crates/react_hermes_parser/tests/fixtures/for-of-conditional-break.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/for-of-continue.js →compiler/crates/react_hermes_parser/tests/fixtures/for-of-continue.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/for-of-destructure.js →compiler/crates/react_hermes_parser/tests/fixtures/for-of-destructure.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/for-of-mutate.js →compiler/crates/react_hermes_parser/tests/fixtures/for-of-mutate.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/for-of-mutate.tsx →compiler/crates/react_hermes_parser/tests/fixtures/for-of-mutate.tsx RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/for-of-simple.js →compiler/crates/react_hermes_parser/tests/fixtures/for-of-simple.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/for-return.js →compiler/crates/react_hermes_parser/tests/fixtures/for-return.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/frozen-after-alias.js →compiler/crates/react_hermes_parser/tests/fixtures/frozen-after-alias.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/function-declaration-reassign.js →compiler/crates/react_hermes_parser/tests/fixtures/function-declaration-reassign.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/function-declaration-redeclare.js →compiler/crates/react_hermes_parser/tests/fixtures/function-declaration-redeclare.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/function-declaration-simple.js →compiler/crates/react_hermes_parser/tests/fixtures/function-declaration-simple.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/function-expression-captures-value-later-frozen-jsx.js →compiler/crates/react_hermes_parser/tests/fixtures/function-expression-captures-value-later-frozen-jsx.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/function-expression-maybe-mutates-hook-return-value.js →compiler/crates/react_hermes_parser/tests/fixtures/function-expression-maybe-mutates-hook-return-value.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/function-expression-with-store-to-parameter.js →compiler/crates/react_hermes_parser/tests/fixtures/function-expression-with-store-to-parameter.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/function-param-assignment-pattern.js →compiler/crates/react_hermes_parser/tests/fixtures/function-param-assignment-pattern.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/gating-test-export-default-function.js →compiler/crates/react_hermes_parser/tests/fixtures/gating-test-export-default-function.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/gating-test-export-function-and-default.js →compiler/crates/react_hermes_parser/tests/fixtures/gating-test-export-function-and-default.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/gating-test-export-function.js →compiler/crates/react_hermes_parser/tests/fixtures/gating-test-export-function.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/gating-test.js →compiler/crates/react_hermes_parser/tests/fixtures/gating-test.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/global-jsx-tag-lowered-between-mutations.js →compiler/crates/react_hermes_parser/tests/fixtures/global-jsx-tag-lowered-between-mutations.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/globals-Boolean.js →compiler/crates/react_hermes_parser/tests/fixtures/globals-Boolean.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/globals-Number.js →compiler/crates/react_hermes_parser/tests/fixtures/globals-Number.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/globals-String.js →compiler/crates/react_hermes_parser/tests/fixtures/globals-String.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/holey-array-expr.js →compiler/crates/react_hermes_parser/tests/fixtures/holey-array-expr.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/holey-array-pattern-dce-2.js →compiler/crates/react_hermes_parser/tests/fixtures/holey-array-pattern-dce-2.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/holey-array-pattern-dce.js →compiler/crates/react_hermes_parser/tests/fixtures/holey-array-pattern-dce.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/holey-array.js →compiler/crates/react_hermes_parser/tests/fixtures/holey-array.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/hook-call.js →compiler/crates/react_hermes_parser/tests/fixtures/hook-call.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/hook-inside-logical-expression.js →compiler/crates/react_hermes_parser/tests/fixtures/hook-inside-logical-expression.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/hooks-freeze-arguments.js →compiler/crates/react_hermes_parser/tests/fixtures/hooks-freeze-arguments.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/hooks-freeze-possibly-mutable-arguments.js →compiler/crates/react_hermes_parser/tests/fixtures/hooks-freeze-possibly-mutable-arguments.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/immutable-hooks.js →compiler/crates/react_hermes_parser/tests/fixtures/immutable-hooks.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/inadvertent-mutability-readonly-class.js →compiler/crates/react_hermes_parser/tests/fixtures/inadvertent-mutability-readonly-class.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/inadvertent-mutability-readonly-lambda.js →compiler/crates/react_hermes_parser/tests/fixtures/inadvertent-mutability-readonly-lambda.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/independent-across-if.js →compiler/crates/react_hermes_parser/tests/fixtures/independent-across-if.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/independent.js →compiler/crates/react_hermes_parser/tests/fixtures/independent.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/independently-memoize-object-property.js →compiler/crates/react_hermes_parser/tests/fixtures/independently-memoize-object-property.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/infer-computed-delete.js →compiler/crates/react_hermes_parser/tests/fixtures/infer-computed-delete.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/infer-global-object.js →compiler/crates/react_hermes_parser/tests/fixtures/infer-global-object.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/infer-phi-primitive.js →compiler/crates/react_hermes_parser/tests/fixtures/infer-phi-primitive.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/infer-property-delete.js →compiler/crates/react_hermes_parser/tests/fixtures/infer-property-delete.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/infer-types-through-type-cast.flow.js →compiler/crates/react_hermes_parser/tests/fixtures/infer-types-through-type-cast.flow.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/inner-memo-value-not-promoted-to-outer-scope-dynamic.js →compiler/crates/react_hermes_parser/tests/fixtures/inner-memo-value-not-promoted-to-outer-scope-dynamic.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/inner-memo-value-not-promoted-to-outer-scope-static.js →compiler/crates/react_hermes_parser/tests/fixtures/inner-memo-value-not-promoted-to-outer-scope-static.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/interdependent-across-if.js →compiler/crates/react_hermes_parser/tests/fixtures/interdependent-across-if.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/interdependent.js →compiler/crates/react_hermes_parser/tests/fixtures/interdependent.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/inverted-if-else.js →compiler/crates/react_hermes_parser/tests/fixtures/inverted-if-else.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/inverted-if.js →compiler/crates/react_hermes_parser/tests/fixtures/inverted-if.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/issue852.js →compiler/crates/react_hermes_parser/tests/fixtures/issue852.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/issue933-disjoint-set-infinite-loop.js →compiler/crates/react_hermes_parser/tests/fixtures/issue933-disjoint-set-infinite-loop.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/jsx-empty-expression.js →compiler/crates/react_hermes_parser/tests/fixtures/jsx-empty-expression.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/jsx-fragment.js →compiler/crates/react_hermes_parser/tests/fixtures/jsx-fragment.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/jsx-member-expression-tag-grouping.js →compiler/crates/react_hermes_parser/tests/fixtures/jsx-member-expression-tag-grouping.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/jsx-member-expression.js →compiler/crates/react_hermes_parser/tests/fixtures/jsx-member-expression.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/jsx-namespaced-name.js →compiler/crates/react_hermes_parser/tests/fixtures/jsx-namespaced-name.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/jsx-spread.js →compiler/crates/react_hermes_parser/tests/fixtures/jsx-spread.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/jsx-tag-evaluation-order-non-global.js →compiler/crates/react_hermes_parser/tests/fixtures/jsx-tag-evaluation-order-non-global.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/jsx-tag-evaluation-order.js →compiler/crates/react_hermes_parser/tests/fixtures/jsx-tag-evaluation-order.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/lambda-capture-returned-alias.js →compiler/crates/react_hermes_parser/tests/fixtures/lambda-capture-returned-alias.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/lambda-mutate-shadowed-object.js →compiler/crates/react_hermes_parser/tests/fixtures/lambda-mutate-shadowed-object.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/lambda-mutated-non-reactive-to-reactive.js →compiler/crates/react_hermes_parser/tests/fixtures/lambda-mutated-non-reactive-to-reactive.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/lambda-mutated-ref-non-reactive.js →compiler/crates/react_hermes_parser/tests/fixtures/lambda-mutated-ref-non-reactive.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/lambda-reassign-primitive.js →compiler/crates/react_hermes_parser/tests/fixtures/lambda-reassign-primitive.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/lambda-reassign-shadowed-primitive.js →compiler/crates/react_hermes_parser/tests/fixtures/lambda-reassign-shadowed-primitive.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/lambda-with-fbt.js →compiler/crates/react_hermes_parser/tests/fixtures/lambda-with-fbt.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/logical-expression-object.js →compiler/crates/react_hermes_parser/tests/fixtures/logical-expression-object.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/logical-expression.js →compiler/crates/react_hermes_parser/tests/fixtures/logical-expression.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/method-call-computed.js →compiler/crates/react_hermes_parser/tests/fixtures/method-call-computed.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/method-call-fn-call.js →compiler/crates/react_hermes_parser/tests/fixtures/method-call-fn-call.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/method-call.js →compiler/crates/react_hermes_parser/tests/fixtures/method-call.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/multi-arrow-expr-export-gating-test.js →compiler/crates/react_hermes_parser/tests/fixtures/multi-arrow-expr-export-gating-test.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/multi-arrow-expr-gating-test.js →compiler/crates/react_hermes_parser/tests/fixtures/multi-arrow-expr-gating-test.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/mutable-lifetime-loops.js →compiler/crates/react_hermes_parser/tests/fixtures/mutable-lifetime-loops.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/mutable-lifetime-with-aliasing.js →compiler/crates/react_hermes_parser/tests/fixtures/mutable-lifetime-with-aliasing.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/mutable-liverange-loop.js →compiler/crates/react_hermes_parser/tests/fixtures/mutable-liverange-loop.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/nested-function-shadowed-identifiers.js →compiler/crates/react_hermes_parser/tests/fixtures/nested-function-shadowed-identifiers.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/nested-optional-member-expr.js →compiler/crates/react_hermes_parser/tests/fixtures/nested-optional-member-expr.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/nested-scopes-hook-call.js →compiler/crates/react_hermes_parser/tests/fixtures/nested-scopes-hook-call.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/new-spread.js →compiler/crates/react_hermes_parser/tests/fixtures/new-spread.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/nonoptional-load-from-optional-memberexpr.js →compiler/crates/react_hermes_parser/tests/fixtures/nonoptional-load-from-optional-memberexpr.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/obj-literal-cached-in-if-else.js →compiler/crates/react_hermes_parser/tests/fixtures/obj-literal-cached-in-if-else.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/obj-literal-mutated-after-if-else.js →compiler/crates/react_hermes_parser/tests/fixtures/obj-literal-mutated-after-if-else.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/obj-mutated-after-if-else-with-alias.js →compiler/crates/react_hermes_parser/tests/fixtures/obj-mutated-after-if-else-with-alias.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/obj-mutated-after-if-else.js →compiler/crates/react_hermes_parser/tests/fixtures/obj-mutated-after-if-else.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/obj-mutated-after-nested-if-else-with-alias.js →compiler/crates/react_hermes_parser/tests/fixtures/obj-mutated-after-nested-if-else-with-alias.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/object-computed-access-assignment.js →compiler/crates/react_hermes_parser/tests/fixtures/object-computed-access-assignment.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/object-expression-string-literal-key.js →compiler/crates/react_hermes_parser/tests/fixtures/object-expression-string-literal-key.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/object-literal-spread-element.js →compiler/crates/react_hermes_parser/tests/fixtures/object-literal-spread-element.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/object-pattern-params.js →compiler/crates/react_hermes_parser/tests/fixtures/object-pattern-params.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/object-properties.js →compiler/crates/react_hermes_parser/tests/fixtures/object-properties.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/optional-call-chained.js →compiler/crates/react_hermes_parser/tests/fixtures/optional-call-chained.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/optional-call-logical.js →compiler/crates/react_hermes_parser/tests/fixtures/optional-call-logical.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/optional-call-simple.js →compiler/crates/react_hermes_parser/tests/fixtures/optional-call-simple.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/optional-call-with-independently-memoizable-arg.js →compiler/crates/react_hermes_parser/tests/fixtures/optional-call-with-independently-memoizable-arg.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/optional-call-with-optional-property-load.js →compiler/crates/react_hermes_parser/tests/fixtures/optional-call-with-optional-property-load.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/optional-call.js →compiler/crates/react_hermes_parser/tests/fixtures/optional-call.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/optional-computed-load-static.js →compiler/crates/react_hermes_parser/tests/fixtures/optional-computed-load-static.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/optional-computed-member-expression.js →compiler/crates/react_hermes_parser/tests/fixtures/optional-computed-member-expression.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/optional-member-expression-call-as-property.js →compiler/crates/react_hermes_parser/tests/fixtures/optional-member-expression-call-as-property.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/optional-member-expression-chain.js →compiler/crates/react_hermes_parser/tests/fixtures/optional-member-expression-chain.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/optional-member-expression-with-optional-member-expr-as-property.js →compiler/crates/react_hermes_parser/tests/fixtures/optional-member-expression-with-optional-member-expr-as-property.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/optional-member-expression.js →compiler/crates/react_hermes_parser/tests/fixtures/optional-member-expression.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/optional-method-call.js →compiler/crates/react_hermes_parser/tests/fixtures/optional-method-call.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/optional-receiver-method-call.js →compiler/crates/react_hermes_parser/tests/fixtures/optional-receiver-method-call.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/optional-receiver-optional-method.js →compiler/crates/react_hermes_parser/tests/fixtures/optional-receiver-optional-method.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/overlapping-scopes-interleaved-by-terminal.js →compiler/crates/react_hermes_parser/tests/fixtures/overlapping-scopes-interleaved-by-terminal.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/overlapping-scopes-interleaved.js →compiler/crates/react_hermes_parser/tests/fixtures/overlapping-scopes-interleaved.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/overlapping-scopes-shadowed.js →compiler/crates/react_hermes_parser/tests/fixtures/overlapping-scopes-shadowed.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/overlapping-scopes-shadowing-within-block.js →compiler/crates/react_hermes_parser/tests/fixtures/overlapping-scopes-shadowing-within-block.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/overlapping-scopes-while.js →compiler/crates/react_hermes_parser/tests/fixtures/overlapping-scopes-while.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/overlapping-scopes-within-block.js →compiler/crates/react_hermes_parser/tests/fixtures/overlapping-scopes-within-block.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/primitive-alias-mutate.js →compiler/crates/react_hermes_parser/tests/fixtures/primitive-alias-mutate.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/primitive-as-dep-nested-scope.js →compiler/crates/react_hermes_parser/tests/fixtures/primitive-as-dep-nested-scope.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/primitive-as-dep.js →compiler/crates/react_hermes_parser/tests/fixtures/primitive-as-dep.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/prop-capturing-function-1.js →compiler/crates/react_hermes_parser/tests/fixtures/prop-capturing-function-1.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/property-assignment.js →compiler/crates/react_hermes_parser/tests/fixtures/property-assignment.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/property-call-evaluation-order.js →compiler/crates/react_hermes_parser/tests/fixtures/property-call-evaluation-order.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/property-call-spread.js →compiler/crates/react_hermes_parser/tests/fixtures/property-call-spread.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reactive-dependencies-non-optional-properties-inside-optional-chain.js →compiler/crates/react_hermes_parser/tests/fixtures/reactive-dependencies-non-optional-properties-inside-optional-chain.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reactive-scope-grouping.js →compiler/crates/react_hermes_parser/tests/fixtures/reactive-scope-grouping.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reactive-scopes-if.js →compiler/crates/react_hermes_parser/tests/fixtures/reactive-scopes-if.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reactive-scopes.js →compiler/crates/react_hermes_parser/tests/fixtures/reactive-scopes.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reactivity-analysis-interleaved-reactivity.js →compiler/crates/react_hermes_parser/tests/fixtures/reactivity-analysis-interleaved-reactivity.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reactivity-analysis-reactive-via-mutation-of-computed-load.js →compiler/crates/react_hermes_parser/tests/fixtures/reactivity-analysis-reactive-via-mutation-of-computed-load.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reactivity-analysis-reactive-via-mutation-of-property-load.js →compiler/crates/react_hermes_parser/tests/fixtures/reactivity-analysis-reactive-via-mutation-of-property-load.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reassign-object-in-context.js →compiler/crates/react_hermes_parser/tests/fixtures/reassign-object-in-context.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reassign-primitive-in-context.js →compiler/crates/react_hermes_parser/tests/fixtures/reassign-primitive-in-context.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reassigned-phi-in-returned-function-expression.js →compiler/crates/react_hermes_parser/tests/fixtures/reassigned-phi-in-returned-function-expression.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reassignment-conditional.js →compiler/crates/react_hermes_parser/tests/fixtures/reassignment-conditional.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reassignment-separate-scopes.js →compiler/crates/react_hermes_parser/tests/fixtures/reassignment-separate-scopes.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reassignment.js →compiler/crates/react_hermes_parser/tests/fixtures/reassignment.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/recursive-function-expr.js →compiler/crates/react_hermes_parser/tests/fixtures/recursive-function-expr.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reduce-reactive-cond-deps-cfg-condexpr.js →compiler/crates/react_hermes_parser/tests/fixtures/reduce-reactive-cond-deps-cfg-condexpr.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reduce-reactive-cond-deps-cfg-ifelse.js →compiler/crates/react_hermes_parser/tests/fixtures/reduce-reactive-cond-deps-cfg-ifelse.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reduce-reactive-cond-deps-cfg-nested-ifelse-missing.js →compiler/crates/react_hermes_parser/tests/fixtures/reduce-reactive-cond-deps-cfg-nested-ifelse-missing.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reduce-reactive-cond-deps-cfg-nested-ifelse.js →compiler/crates/react_hermes_parser/tests/fixtures/reduce-reactive-cond-deps-cfg-nested-ifelse.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reduce-reactive-cond-deps-cfg-switch-missing-case.js →compiler/crates/react_hermes_parser/tests/fixtures/reduce-reactive-cond-deps-cfg-switch-missing-case.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reduce-reactive-cond-deps-cfg-switch-missing-default.js →compiler/crates/react_hermes_parser/tests/fixtures/reduce-reactive-cond-deps-cfg-switch-missing-default.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reduce-reactive-cond-deps-cfg-switch.js →compiler/crates/react_hermes_parser/tests/fixtures/reduce-reactive-cond-deps-cfg-switch.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reduce-reactive-cond-deps-no-uncond.js →compiler/crates/react_hermes_parser/tests/fixtures/reduce-reactive-cond-deps-no-uncond.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reduce-reactive-cond-deps-promote-uncond.js →compiler/crates/react_hermes_parser/tests/fixtures/reduce-reactive-cond-deps-promote-uncond.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reduce-reactive-cond-deps-subpath-order1.js →compiler/crates/react_hermes_parser/tests/fixtures/reduce-reactive-cond-deps-subpath-order1.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reduce-reactive-cond-deps-subpath-order2.js →compiler/crates/react_hermes_parser/tests/fixtures/reduce-reactive-cond-deps-subpath-order2.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reduce-reactive-cond-deps-superpath-order1.js →compiler/crates/react_hermes_parser/tests/fixtures/reduce-reactive-cond-deps-superpath-order1.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reduce-reactive-cond-deps-superpath-order2.js →compiler/crates/react_hermes_parser/tests/fixtures/reduce-reactive-cond-deps-superpath-order2.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reduce-reactive-cond-memberexpr-join.js →compiler/crates/react_hermes_parser/tests/fixtures/reduce-reactive-cond-memberexpr-join.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reduce-reactive-dependencies-optional-member-expression.js →compiler/crates/react_hermes_parser/tests/fixtures/reduce-reactive-dependencies-optional-member-expression.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reduce-reactive-deps-cond-scope.js →compiler/crates/react_hermes_parser/tests/fixtures/reduce-reactive-deps-cond-scope.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reduce-reactive-deps-join-uncond-scopes-cond-deps.js →compiler/crates/react_hermes_parser/tests/fixtures/reduce-reactive-deps-join-uncond-scopes-cond-deps.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reduce-reactive-uncond-deps-nonoverlap-descendant.js →compiler/crates/react_hermes_parser/tests/fixtures/reduce-reactive-uncond-deps-nonoverlap-descendant.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reduce-reactive-uncond-deps-nonoverlap-direct.js →compiler/crates/react_hermes_parser/tests/fixtures/reduce-reactive-uncond-deps-nonoverlap-direct.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reduce-reactive-uncond-deps-overlap-descendant.js →compiler/crates/react_hermes_parser/tests/fixtures/reduce-reactive-uncond-deps-overlap-descendant.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reduce-reactive-uncond-deps-overlap-direct.js →compiler/crates/react_hermes_parser/tests/fixtures/reduce-reactive-uncond-deps-overlap-direct.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reduce-reactive-uncond-deps-subpath-order1.js →compiler/crates/react_hermes_parser/tests/fixtures/reduce-reactive-uncond-deps-subpath-order1.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reduce-reactive-uncond-deps-subpath-order2.js →compiler/crates/react_hermes_parser/tests/fixtures/reduce-reactive-uncond-deps-subpath-order2.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reduce-reactive-uncond-deps-subpath-order3.js →compiler/crates/react_hermes_parser/tests/fixtures/reduce-reactive-uncond-deps-subpath-order3.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ref-current-aliased-no-added-to-dep.js →compiler/crates/react_hermes_parser/tests/fixtures/ref-current-aliased-no-added-to-dep.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ref-current-aliased-not-added-to-dep-2.js →compiler/crates/react_hermes_parser/tests/fixtures/ref-current-aliased-not-added-to-dep-2.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ref-current-field-not-added-to-dep.js →compiler/crates/react_hermes_parser/tests/fixtures/ref-current-field-not-added-to-dep.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ref-current-not-added-to-dep-2.js →compiler/crates/react_hermes_parser/tests/fixtures/ref-current-not-added-to-dep-2.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ref-current-not-added-to-dep.js →compiler/crates/react_hermes_parser/tests/fixtures/ref-current-not-added-to-dep.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ref-current-optional-field-no-added-to-dep.js →compiler/crates/react_hermes_parser/tests/fixtures/ref-current-optional-field-no-added-to-dep.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ref-current-write-not-added-to-dep.js →compiler/crates/react_hermes_parser/tests/fixtures/ref-current-write-not-added-to-dep.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ref-in-effect.js →compiler/crates/react_hermes_parser/tests/fixtures/ref-in-effect.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/regexp-literal.js →compiler/crates/react_hermes_parser/tests/fixtures/regexp-literal.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/remove-memoization-kitchen-sink.js →compiler/crates/react_hermes_parser/tests/fixtures/remove-memoization-kitchen-sink.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/repro-reassign-to-variable-without-mutable-range.js →compiler/crates/react_hermes_parser/tests/fixtures/repro-reassign-to-variable-without-mutable-range.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/repro-scope-missing-mutable-range.js →compiler/crates/react_hermes_parser/tests/fixtures/repro-scope-missing-mutable-range.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/repro.js →compiler/crates/react_hermes_parser/tests/fixtures/repro.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/return-conditional.js →compiler/crates/react_hermes_parser/tests/fixtures/return-conditional.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/return-undefined.js →compiler/crates/react_hermes_parser/tests/fixtures/return-undefined.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/reverse-postorder.js →compiler/crates/react_hermes_parser/tests/fixtures/reverse-postorder.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/same-variable-as-dep-and-redeclare-maybe-frozen.js →compiler/crates/react_hermes_parser/tests/fixtures/same-variable-as-dep-and-redeclare-maybe-frozen.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/same-variable-as-dep-and-redeclare.js →compiler/crates/react_hermes_parser/tests/fixtures/same-variable-as-dep-and-redeclare.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/sequence-expression.js →compiler/crates/react_hermes_parser/tests/fixtures/sequence-expression.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/sequentially-constant-progagatable-if-test-conditions.js →compiler/crates/react_hermes_parser/tests/fixtures/sequentially-constant-progagatable-if-test-conditions.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/simple-alias.js →compiler/crates/react_hermes_parser/tests/fixtures/simple-alias.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/simple-function-1.js →compiler/crates/react_hermes_parser/tests/fixtures/simple-function-1.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/simple-scope.js →compiler/crates/react_hermes_parser/tests/fixtures/simple-scope.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/simple.js →compiler/crates/react_hermes_parser/tests/fixtures/simple.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/sketchy-code-exhaustive-deps.js →compiler/crates/react_hermes_parser/tests/fixtures/sketchy-code-exhaustive-deps.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/sketchy-code-rules-of-hooks.js →compiler/crates/react_hermes_parser/tests/fixtures/sketchy-code-rules-of-hooks.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-arrayexpression.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-arrayexpression.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-call-jsx-2.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-call-jsx-2.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-call-jsx.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-call-jsx.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-cascading-eliminated-phis.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-cascading-eliminated-phis.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-complex-multiple-if.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-complex-multiple-if.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-complex-single-if.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-complex-single-if.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-for-of.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-for-of.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-for-trivial-update.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-for-trivial-update.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-for.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-for.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-if-else.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-if-else.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-leave-case.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-leave-case.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-multiple-phis.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-multiple-phis.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-nested-loops-no-reassign.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-nested-loops-no-reassign.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-nested-partial-phi.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-nested-partial-phi.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-nested-partial-reassignment.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-nested-partial-reassignment.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-newexpression.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-newexpression.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-non-empty-initializer.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-non-empty-initializer.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-objectexpression-phi.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-objectexpression-phi.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-objectexpression.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-objectexpression.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-property-alias-alias-mutate-if.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-property-alias-alias-mutate-if.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-property-alias-if.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-property-alias-if.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-property-alias-mutate-if.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-property-alias-mutate-if.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-property-alias-mutate-inside-if.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-property-alias-mutate-inside-if.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-property-alias-mutate.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-property-alias-mutate.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-property-call.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-property-call.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-property-mutate-2.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-property-mutate-2.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-property-mutate-alias.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-property-mutate-alias.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-property-mutate.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-property-mutate.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-property.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-property.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-reassign-in-rval.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-reassign-in-rval.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-reassign.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-reassign.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-renaming-ternary-destruction-with-mutation.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-renaming-ternary-destruction-with-mutation.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-renaming-ternary-destruction.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-renaming-ternary-destruction.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-renaming-ternary-with-mutation.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-renaming-ternary-with-mutation.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-renaming-ternary.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-renaming-ternary.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-renaming-unconditional-ternary-with-mutation.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-renaming-unconditional-ternary-with-mutation.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-renaming-unconditional-ternary.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-renaming-unconditional-ternary.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-renaming-unconditional-with-mutation.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-renaming-unconditional-with-mutation.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-renaming-via-destructuring-with-mutation.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-renaming-via-destructuring-with-mutation.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-renaming-via-destructuring.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-renaming-via-destructuring.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-renaming-with-mutation.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-renaming-with-mutation.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-renaming.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-renaming.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-return.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-return.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-shadowing.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-shadowing.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-sibling-phis.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-sibling-phis.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-simple-phi.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-simple-phi.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-simple.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-simple.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-single-if.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-single-if.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-switch.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-switch.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-throw.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-throw.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-while-no-reassign.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-while-no-reassign.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ssa-while.js →compiler/crates/react_hermes_parser/tests/fixtures/ssa-while.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/store-via-call.js →compiler/crates/react_hermes_parser/tests/fixtures/store-via-call.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/store-via-new.js →compiler/crates/react_hermes_parser/tests/fixtures/store-via-new.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/switch-global-propertyload-case-test.js →compiler/crates/react_hermes_parser/tests/fixtures/switch-global-propertyload-case-test.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/switch-non-final-default.js →compiler/crates/react_hermes_parser/tests/fixtures/switch-non-final-default.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/switch-with-fallthrough.js →compiler/crates/react_hermes_parser/tests/fixtures/switch-with-fallthrough.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/switch.js →compiler/crates/react_hermes_parser/tests/fixtures/switch.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/tagged-template-in-hook.js →compiler/crates/react_hermes_parser/tests/fixtures/tagged-template-in-hook.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/tagged-template-literal.js →compiler/crates/react_hermes_parser/tests/fixtures/tagged-template-literal.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/template-literal.js →compiler/crates/react_hermes_parser/tests/fixtures/template-literal.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/temporary-accessed-outside-scope.js →compiler/crates/react_hermes_parser/tests/fixtures/temporary-accessed-outside-scope.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/temporary-at-start-of-value-block.js →compiler/crates/react_hermes_parser/tests/fixtures/temporary-at-start-of-value-block.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/temporary-property-load-accessed-outside-scope.js →compiler/crates/react_hermes_parser/tests/fixtures/temporary-property-load-accessed-outside-scope.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ternary-assignment-expression.js →compiler/crates/react_hermes_parser/tests/fixtures/ternary-assignment-expression.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/ternary-expression.js →compiler/crates/react_hermes_parser/tests/fixtures/ternary-expression.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/timers.js →compiler/crates/react_hermes_parser/tests/fixtures/timers.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/todo-function-expression-captures-value-later-frozen.js →compiler/crates/react_hermes_parser/tests/fixtures/todo-function-expression-captures-value-later-frozen.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/todo.unnecessary-lambda-memoization.js →compiler/crates/react_hermes_parser/tests/fixtures/todo.unnecessary-lambda-memoization.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/transitive-alias-fields.js →compiler/crates/react_hermes_parser/tests/fixtures/transitive-alias-fields.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/trivial.js →compiler/crates/react_hermes_parser/tests/fixtures/trivial.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/type-args-test-binary-operator.js →compiler/crates/react_hermes_parser/tests/fixtures/type-args-test-binary-operator.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/type-binary-operator.js →compiler/crates/react_hermes_parser/tests/fixtures/type-binary-operator.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/type-cast-expression.flow.js →compiler/crates/react_hermes_parser/tests/fixtures/type-cast-expression.flow.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/type-field-load.js →compiler/crates/react_hermes_parser/tests/fixtures/type-field-load.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/type-test-field-load-binary-op.js →compiler/crates/react_hermes_parser/tests/fixtures/type-test-field-load-binary-op.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/type-test-field-store.js →compiler/crates/react_hermes_parser/tests/fixtures/type-test-field-store.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/type-test-polymorphic.js →compiler/crates/react_hermes_parser/tests/fixtures/type-test-polymorphic.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/type-test-primitive.js →compiler/crates/react_hermes_parser/tests/fixtures/type-test-primitive.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/type-test-return-type-inference.js →compiler/crates/react_hermes_parser/tests/fixtures/type-test-return-type-inference.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/unary-expr.js →compiler/crates/react_hermes_parser/tests/fixtures/unary-expr.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/unconditional-break-label.js →compiler/crates/react_hermes_parser/tests/fixtures/unconditional-break-label.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/uninitialized-declaration-in-reactive-scope.js →compiler/crates/react_hermes_parser/tests/fixtures/uninitialized-declaration-in-reactive-scope.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/unknown-hooks-do-not-assert.js →compiler/crates/react_hermes_parser/tests/fixtures/unknown-hooks-do-not-assert.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/unused-array-middle-element.js →compiler/crates/react_hermes_parser/tests/fixtures/unused-array-middle-element.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/unused-array-rest-element.js →compiler/crates/react_hermes_parser/tests/fixtures/unused-array-rest-element.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/unused-conditional.js →compiler/crates/react_hermes_parser/tests/fixtures/unused-conditional.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/unused-logical-assigned-to-variable.js →compiler/crates/react_hermes_parser/tests/fixtures/unused-logical-assigned-to-variable.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/unused-logical.js →compiler/crates/react_hermes_parser/tests/fixtures/unused-logical.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/unused-object-element-with-rest.js →compiler/crates/react_hermes_parser/tests/fixtures/unused-object-element-with-rest.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/unused-object-element.js →compiler/crates/react_hermes_parser/tests/fixtures/unused-object-element.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/unused-optional-method-assigned-to-variable.js →compiler/crates/react_hermes_parser/tests/fixtures/unused-optional-method-assigned-to-variable.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/unused-ternary-assigned-to-variable.js →compiler/crates/react_hermes_parser/tests/fixtures/unused-ternary-assigned-to-variable.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/update-expression.js →compiler/crates/react_hermes_parser/tests/fixtures/update-expression.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/use-callback-simple.js →compiler/crates/react_hermes_parser/tests/fixtures/use-callback-simple.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/useEffect-arg-memoized.js →compiler/crates/react_hermes_parser/tests/fixtures/useEffect-arg-memoized.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/useEffect-nested-lambdas.js →compiler/crates/react_hermes_parser/tests/fixtures/useEffect-nested-lambdas.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/useMemo-if-else-multiple-return.js →compiler/crates/react_hermes_parser/tests/fixtures/useMemo-if-else-multiple-return.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/useMemo-independently-memoizeable.js →compiler/crates/react_hermes_parser/tests/fixtures/useMemo-independently-memoizeable.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/useMemo-inlining-block-return.js →compiler/crates/react_hermes_parser/tests/fixtures/useMemo-inlining-block-return.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/useMemo-inverted-if.js →compiler/crates/react_hermes_parser/tests/fixtures/useMemo-inverted-if.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/useMemo-labeled-statement-unconditional-return.js →compiler/crates/react_hermes_parser/tests/fixtures/useMemo-labeled-statement-unconditional-return.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/useMemo-logical.js →compiler/crates/react_hermes_parser/tests/fixtures/useMemo-logical.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/useMemo-multiple-if-else.js →compiler/crates/react_hermes_parser/tests/fixtures/useMemo-multiple-if-else.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/useMemo-named-function.js →compiler/crates/react_hermes_parser/tests/fixtures/useMemo-named-function.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/useMemo-nested-ifs.js →compiler/crates/react_hermes_parser/tests/fixtures/useMemo-nested-ifs.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/useMemo-return-empty.js →compiler/crates/react_hermes_parser/tests/fixtures/useMemo-return-empty.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/useMemo-simple.js →compiler/crates/react_hermes_parser/tests/fixtures/useMemo-simple.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/useMemo-switch-no-fallthrough.js →compiler/crates/react_hermes_parser/tests/fixtures/useMemo-switch-no-fallthrough.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/useMemo-switch-return.js →compiler/crates/react_hermes_parser/tests/fixtures/useMemo-switch-return.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/while-break.js →compiler/crates/react_hermes_parser/tests/fixtures/while-break.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/while-conditional-continue.js →compiler/crates/react_hermes_parser/tests/fixtures/while-conditional-continue.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/while-logical.js →compiler/crates/react_hermes_parser/tests/fixtures/while-logical.js RenamedR compiler/crates/forget_hermes_parser/tests/fixtures/while-property.js →compiler/crates/react_hermes_parser/tests/fixtures/while-property.js RenamedR compiler/crates/forget_hermes_parser/tests/parser_test.rs →compiler/crates/react_hermes_parser/tests/parser_test.rs RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@alias-capture-in-method-receiver-and-mutate.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@alias-capture-in-method-receiver-and-mutate.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@allocating-primitive-as-dep-nested-scope.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@allocating-primitive-as-dep-nested-scope.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@array-map-mutable-array-mutating-lambda.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@array-map-mutable-array-mutating-lambda.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@assignment-variations-complex-lvalue-array.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@assignment-variations-complex-lvalue-array.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@assignment-variations-complex-lvalue.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@assignment-variations-complex-lvalue.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@babel-existing-react-kitchensink-import.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@babel-existing-react-kitchensink-import.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@bug_object-pattern.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@bug_object-pattern.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@builtin-jsx-tag-lowered-between-mutations.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@builtin-jsx-tag-lowered-between-mutations.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@call-with-independently-memoizable-arg.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@call-with-independently-memoizable-arg.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@capture_mutate-across-fns.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@capture_mutate-across-fns.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-fun-alias-captured-mutate-2.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-fun-alias-captured-mutate-2.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-fun-alias-captured-mutate-arr-2.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-fun-alias-captured-mutate-arr-2.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-func-alias-captured-mutate-arr.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-func-alias-captured-mutate-arr.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-func-alias-captured-mutate.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-func-alias-captured-mutate.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-func-alias-computed-mutate.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-func-alias-computed-mutate.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-func-alias-receiver-computed-mutate.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-func-alias-receiver-computed-mutate.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-func-alias-receiver-mutate.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-func-alias-receiver-mutate.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-function-alias-computed-load-2.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-function-alias-computed-load-2.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-function-alias-computed-load-3.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-function-alias-computed-load-3.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-function-alias-computed-load-4.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-function-alias-computed-load-4.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-function-alias-computed-load.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-function-alias-computed-load.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-function-capture-ref-before-rename.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-function-capture-ref-before-rename.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-function-conditional-capture-mutate.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-function-conditional-capture-mutate.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-function-member-expr-arguments.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-function-member-expr-arguments.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-function-member-expr-call.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-function-member-expr-call.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-function-skip-computed-path.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-function-skip-computed-path.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-nested-member-expr-in-nested-func.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-nested-member-expr-in-nested-func.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-variable-in-nested-function.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@capturing-variable-in-nested-function.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@chained-assignment-context-variable.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@chained-assignment-context-variable.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@codegen-instrument-forget-gating-test.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@codegen-instrument-forget-gating-test.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@computed-load-primitive-as-dependency.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@computed-load-primitive-as-dependency.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@const-propagation-into-function-expression-global.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@const-propagation-into-function-expression-global.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@const-propagation-into-function-expression-primitive.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@const-propagation-into-function-expression-primitive.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@constant-propagation-into-function-expressions.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@constant-propagation-into-function-expressions.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@context-variable-reassigned-outside-of-lambda.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@context-variable-reassigned-outside-of-lambda.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@declare-reassign-variable-in-closure.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@declare-reassign-variable-in-closure.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@declare-reassign-variable-in-function-declaration.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@declare-reassign-variable-in-function-declaration.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@destructuring-assignment-array-default.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@destructuring-assignment-array-default.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@destructuring-mixed-scope-and-local-variables-with-default.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@destructuring-mixed-scope-and-local-variables-with-default.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@destructuring-mixed-scope-declarations-and-locals.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@destructuring-mixed-scope-declarations-and-locals.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@error._todo.computed-lval-in-destructure.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@error._todo.computed-lval-in-destructure.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@error._todo.multi-arrow-expr-export-default-gating-test.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@error._todo.multi-arrow-expr-export-default-gating-test.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@error.babel-existing-react-namespace-import.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@error.babel-existing-react-namespace-import.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@error.bug-validate-no-set-state-not-all-mutable-range-extensions-are-bad.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@error.bug-validate-no-set-state-not-all-mutable-range-extensions-are-bad.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@error.call-args-destructuring-asignment-complex.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@error.call-args-destructuring-asignment-complex.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@error.codegen-error-on-conflicting-imports.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@error.codegen-error-on-conflicting-imports.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-access-ref-during-render.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-access-ref-during-render.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-capture-func-passed-to-jsx.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-capture-func-passed-to-jsx.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-computed-store-to-frozen-value.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-computed-store-to-frozen-value.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-delete-computed-property-of-frozen-value.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-delete-computed-property-of-frozen-value.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-delete-property-of-frozen-value.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-delete-property-of-frozen-value.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-destructure-assignment-to-global.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-destructure-assignment-to-global.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-destructure-to-local-global-variables.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-destructure-to-local-global-variables.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-freeze-conditionally-mutable-lambda.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-freeze-conditionally-mutable-lambda.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-freeze-mutable-lambda-mutate-local.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-freeze-mutable-lambda-mutate-local.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-freeze-mutable-lambda-reassign-local.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-freeze-mutable-lambda-reassign-local.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-function-expression-mutates-immutable-value.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-function-expression-mutates-immutable-value.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-mutate-after-aliased-freeze.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-mutate-after-aliased-freeze.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-pass-hook-as-call-arg.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-pass-hook-as-call-arg.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-property-store-to-frozen-value.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-property-store-to-frozen-value.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-ref-in-callback-invoked-during-render.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-ref-in-callback-invoked-during-render.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-set-and-read-ref-during-render.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-set-and-read-ref-during-render.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-sketchy-code-use-forget.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-sketchy-code-use-forget.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-ternary-with-hook-values.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-ternary-with-hook-values.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-unconditional-set-state-in-render.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-unconditional-set-state-in-render.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-use-ref-added-to-dep-without-type-info.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-use-ref-added-to-dep-without-type-info.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-useMemo-async-callback.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-useMemo-async-callback.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-useMemo-callback-args.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@error.invalid-useMemo-callback-args.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@error.mutate-captured-arg-separately.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@error.mutate-captured-arg-separately.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@error.mutate-global-increment-op-invalid-react.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@error.mutate-global-increment-op-invalid-react.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@error.todo-unconditional-set-state-lambda.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@error.todo-unconditional-set-state-lambda.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@error.todo.destructure-assignment-to-context-var.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@error.todo.destructure-assignment-to-context-var.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@error.while-with-assignment-in-test.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@error.while-with-assignment-in-test.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@escape-analysis-destructured-rest-element.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@escape-analysis-destructured-rest-element.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@escape-analysis-non-escaping-interleaved-allocating-dependency.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@escape-analysis-non-escaping-interleaved-allocating-dependency.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@escape-analysis-non-escaping-interleaved-allocating-nested-dependency.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@escape-analysis-non-escaping-interleaved-allocating-nested-dependency.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@escape-analysis-non-escaping-interleaved-primitive-dependency.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@escape-analysis-non-escaping-interleaved-primitive-dependency.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@escape-analysis-not-conditional-test.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@escape-analysis-not-conditional-test.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@function-expression-captures-value-later-frozen-jsx.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@function-expression-captures-value-later-frozen-jsx.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@function-expression-maybe-mutates-hook-return-value.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@function-expression-maybe-mutates-hook-return-value.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@function-expression-with-store-to-parameter.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@function-expression-with-store-to-parameter.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@gating-test-export-default-function.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@gating-test-export-default-function.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@gating-test-export-function-and-default.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@gating-test-export-function-and-default.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@global-jsx-tag-lowered-between-mutations.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@global-jsx-tag-lowered-between-mutations.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@hooks-freeze-possibly-mutable-arguments.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@hooks-freeze-possibly-mutable-arguments.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@inadvertent-mutability-readonly-class.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@inadvertent-mutability-readonly-class.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@inadvertent-mutability-readonly-lambda.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@inadvertent-mutability-readonly-lambda.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@independently-memoize-object-property.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@independently-memoize-object-property.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@inner-memo-value-not-promoted-to-outer-scope-dynamic.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@inner-memo-value-not-promoted-to-outer-scope-dynamic.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@inner-memo-value-not-promoted-to-outer-scope-static.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@inner-memo-value-not-promoted-to-outer-scope-static.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@issue933-disjoint-set-infinite-loop.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@issue933-disjoint-set-infinite-loop.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@jsx-tag-evaluation-order-non-global.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@jsx-tag-evaluation-order-non-global.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@lambda-mutated-non-reactive-to-reactive.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@lambda-mutated-non-reactive-to-reactive.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@multi-arrow-expr-export-gating-test.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@multi-arrow-expr-export-gating-test.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@nested-function-shadowed-identifiers.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@nested-function-shadowed-identifiers.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@nonoptional-load-from-optional-memberexpr.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@nonoptional-load-from-optional-memberexpr.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@obj-mutated-after-if-else-with-alias.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@obj-mutated-after-if-else-with-alias.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@obj-mutated-after-nested-if-else-with-alias.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@obj-mutated-after-nested-if-else-with-alias.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@object-expression-string-literal-key.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@object-expression-string-literal-key.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@optional-call-with-independently-memoizable-arg.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@optional-call-with-independently-memoizable-arg.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@optional-call-with-optional-property-load.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@optional-call-with-optional-property-load.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@optional-computed-member-expression.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@optional-computed-member-expression.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@optional-member-expression-call-as-property.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@optional-member-expression-call-as-property.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@optional-member-expression-with-optional-member-expr-as-property.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@optional-member-expression-with-optional-member-expr-as-property.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@overlapping-scopes-interleaved-by-terminal.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@overlapping-scopes-interleaved-by-terminal.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@overlapping-scopes-shadowing-within-block.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@overlapping-scopes-shadowing-within-block.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@reactive-dependencies-non-optional-properties-inside-optional-chain.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@reactive-dependencies-non-optional-properties-inside-optional-chain.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@reactivity-analysis-interleaved-reactivity.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@reactivity-analysis-interleaved-reactivity.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@reactivity-analysis-reactive-via-mutation-of-computed-load.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@reactivity-analysis-reactive-via-mutation-of-computed-load.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@reactivity-analysis-reactive-via-mutation-of-property-load.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@reactivity-analysis-reactive-via-mutation-of-property-load.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@reassigned-phi-in-returned-function-expression.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@reassigned-phi-in-returned-function-expression.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-cond-deps-cfg-condexpr.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-cond-deps-cfg-condexpr.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-cond-deps-cfg-ifelse.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-cond-deps-cfg-ifelse.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-cond-deps-cfg-nested-ifelse-missing.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-cond-deps-cfg-nested-ifelse-missing.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-cond-deps-cfg-nested-ifelse.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-cond-deps-cfg-nested-ifelse.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-cond-deps-cfg-switch-missing-case.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-cond-deps-cfg-switch-missing-case.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-cond-deps-cfg-switch-missing-default.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-cond-deps-cfg-switch-missing-default.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-cond-deps-cfg-switch.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-cond-deps-cfg-switch.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-cond-deps-no-uncond.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-cond-deps-no-uncond.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-cond-deps-promote-uncond.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-cond-deps-promote-uncond.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-cond-deps-subpath-order1.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-cond-deps-subpath-order1.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-cond-deps-subpath-order2.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-cond-deps-subpath-order2.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-cond-deps-superpath-order1.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-cond-deps-superpath-order1.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-cond-deps-superpath-order2.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-cond-deps-superpath-order2.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-cond-memberexpr-join.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-cond-memberexpr-join.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-dependencies-optional-member-expression.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-dependencies-optional-member-expression.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-deps-join-uncond-scopes-cond-deps.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-deps-join-uncond-scopes-cond-deps.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-uncond-deps-nonoverlap-descendant.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-uncond-deps-nonoverlap-descendant.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-uncond-deps-nonoverlap-direct.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-uncond-deps-nonoverlap-direct.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-uncond-deps-overlap-descendant.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-uncond-deps-overlap-descendant.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-uncond-deps-overlap-direct.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-uncond-deps-overlap-direct.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-uncond-deps-subpath-order1.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-uncond-deps-subpath-order1.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-uncond-deps-subpath-order2.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-uncond-deps-subpath-order2.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-uncond-deps-subpath-order3.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@reduce-reactive-uncond-deps-subpath-order3.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@ref-current-aliased-no-added-to-dep.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@ref-current-aliased-no-added-to-dep.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@ref-current-aliased-not-added-to-dep-2.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@ref-current-aliased-not-added-to-dep-2.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@ref-current-optional-field-no-added-to-dep.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@ref-current-optional-field-no-added-to-dep.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@repro-reassign-to-variable-without-mutable-range.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@repro-reassign-to-variable-without-mutable-range.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@same-variable-as-dep-and-redeclare-maybe-frozen.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@same-variable-as-dep-and-redeclare-maybe-frozen.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@sequentially-constant-progagatable-if-test-conditions.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@sequentially-constant-progagatable-if-test-conditions.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@ssa-property-alias-mutate-inside-if.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@ssa-property-alias-mutate-inside-if.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@ssa-renaming-ternary-destruction-with-mutation.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@ssa-renaming-ternary-destruction-with-mutation.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@ssa-renaming-unconditional-ternary-with-mutation.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@ssa-renaming-unconditional-ternary-with-mutation.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@ssa-renaming-unconditional-with-mutation.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@ssa-renaming-unconditional-with-mutation.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@ssa-renaming-via-destructuring-with-mutation.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@ssa-renaming-via-destructuring-with-mutation.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@switch-global-propertyload-case-test.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@switch-global-propertyload-case-test.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@temporary-property-load-accessed-outside-scope.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@temporary-property-load-accessed-outside-scope.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@todo-function-expression-captures-value-later-frozen.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@todo-function-expression-captures-value-later-frozen.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@todo.unnecessary-lambda-memoization.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@todo.unnecessary-lambda-memoization.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@uninitialized-declaration-in-reactive-scope.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@uninitialized-declaration-in-reactive-scope.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@unused-logical-assigned-to-variable.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@unused-logical-assigned-to-variable.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@unused-optional-method-assigned-to-variable.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@unused-optional-method-assigned-to-variable.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@unused-ternary-assigned-to-variable.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@unused-ternary-assigned-to-variable.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/parser_test__fixtures@useMemo-labeled-statement-unconditional-return.js.snap →compiler/crates/react_hermes_parser/tests/snapshots/parser_test__fixtures@useMemo-labeled-statement-unconditional-return.js.snap RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hermes_parser/tests/snapshots/[email protected] →compiler/crates/react_hermes_parser/tests/snapshots/[email protected] RenamedR compiler/crates/forget_hir/Cargo.toml →compiler/crates/react_hir/Cargo.toml RenamedR compiler/crates/forget_hir/README.md →compiler/crates/react_hir/README.md RenamedR compiler/crates/forget_hir/src/basic_block.rs →compiler/crates/react_hir/src/basic_block.rs RenamedR compiler/crates/forget_hir/src/environment.rs →compiler/crates/react_hir/src/environment.rs RenamedR compiler/crates/forget_hir/src/features.rs →compiler/crates/react_hir/src/features.rs RenamedR compiler/crates/forget_hir/src/function.rs →compiler/crates/react_hir/src/function.rs RenamedR compiler/crates/forget_hir/src/id_types.rs →compiler/crates/react_hir/src/id_types.rs RenamedR compiler/crates/forget_hir/src/initialize.rs →compiler/crates/react_hir/src/initialize.rs RenamedR compiler/crates/forget_hir/src/inline_use_memo.rs →compiler/crates/react_hir/src/inline_use_memo.rs RenamedR compiler/crates/forget_hir/src/instruction.rs →compiler/crates/react_hir/src/instruction.rs RenamedR compiler/crates/forget_hir/src/lib.rs →compiler/crates/react_hir/src/lib.rs RenamedR compiler/crates/forget_hir/src/merge_consecutive_blocks.rs →compiler/crates/react_hir/src/merge_consecutive_blocks.rs RenamedR compiler/crates/forget_hir/src/print.rs →compiler/crates/react_hir/src/print.rs RenamedR compiler/crates/forget_hir/src/registry.rs →compiler/crates/react_hir/src/registry.rs RenamedR compiler/crates/forget_hir/src/terminal.rs →compiler/crates/react_hir/src/terminal.rs RenamedR compiler/crates/forget_hir/src/types.rs →compiler/crates/react_hir/src/types.rs RenamedR compiler/crates/forget_napi/Cargo.toml →compiler/crates/react_napi/Cargo.toml RenamedR compiler/crates/forget_napi/README.md →compiler/crates/react_napi/README.md RenamedR compiler/crates/forget_napi/build.rs →compiler/crates/react_napi/build.rs RenamedR compiler/crates/forget_napi/package.json →compiler/crates/react_napi/package.json RenamedR compiler/crates/forget_napi/src/lib.rs →compiler/crates/react_napi/src/lib.rs RenamedR compiler/crates/forget_napi/yarn.lock →compiler/crates/react_napi/yarn.lock RenamedR compiler/crates/forget_optimization/Cargo.toml →compiler/crates/react_optimization/Cargo.toml RenamedR compiler/crates/forget_optimization/README.md →compiler/crates/react_optimization/README.md RenamedR compiler/crates/forget_optimization/src/constant_propagation.rs →compiler/crates/react_optimization/src/constant_propagation.rs RenamedR compiler/crates/forget_optimization/src/lib.rs →compiler/crates/react_optimization/src/lib.rs RenamedR compiler/crates/forget_reactive_ir/Cargo.toml →compiler/crates/react_reactive_ir/Cargo.toml RenamedR compiler/crates/forget_reactive_ir/README.md →compiler/crates/react_reactive_ir/README.md RenamedR compiler/crates/forget_reactive_ir/src/lib.rs →compiler/crates/react_reactive_ir/src/lib.rs RenamedR compiler/crates/forget_semantic_analysis/Cargo.toml →compiler/crates/react_semantic_analysis/Cargo.toml RenamedR compiler/crates/forget_semantic_analysis/README.md →compiler/crates/react_semantic_analysis/README.md RenamedR compiler/crates/forget_semantic_analysis/src/analyzer.rs →compiler/crates/react_semantic_analysis/src/analyzer.rs RenamedR compiler/crates/forget_semantic_analysis/src/lib.rs →compiler/crates/react_semantic_analysis/src/lib.rs RenamedR compiler/crates/forget_semantic_analysis/src/scope_manager.rs →compiler/crates/react_semantic_analysis/src/scope_manager.rs RenamedR compiler/crates/forget_semantic_analysis/src/scope_view.rs →compiler/crates/react_semantic_analysis/src/scope_view.rs RenamedR compiler/crates/forget_semantic_analysis/tests/analysis_test.rs →compiler/crates/react_semantic_analysis/tests/analysis_test.rs RenamedR compiler/crates/forget_semantic_analysis/tests/fixtures/block-item-duplication.js →compiler/crates/react_semantic_analysis/tests/fixtures/block-item-duplication.js RenamedR compiler/crates/forget_semantic_analysis/tests/fixtures/function-hoisting.js →compiler/crates/react_semantic_analysis/tests/fixtures/function-hoisting.js RenamedR compiler/crates/forget_semantic_analysis/tests/fixtures/globals-and-imports.js →compiler/crates/react_semantic_analysis/tests/fixtures/globals-and-imports.js RenamedR compiler/crates/forget_semantic_analysis/tests/fixtures/labels.js →compiler/crates/react_semantic_analysis/tests/fixtures/labels.js RenamedR compiler/crates/forget_semantic_analysis/tests/fixtures/let-const-hoisting.js →compiler/crates/react_semantic_analysis/tests/fixtures/let-const-hoisting.js RenamedR compiler/crates/forget_semantic_analysis/tests/fixtures/simple-function.js →compiler/crates/react_semantic_analysis/tests/fixtures/simple-function.js RenamedR compiler/crates/forget_semantic_analysis/tests/fixtures/tdz.js →compiler/crates/react_semantic_analysis/tests/fixtures/tdz.js RenamedR compiler/crates/forget_semantic_analysis/tests/fixtures/var-duplication.js →compiler/crates/react_semantic_analysis/tests/fixtures/var-duplication.js RenamedR compiler/crates/forget_semantic_analysis/tests/fixtures/var-hoisting.js →compiler/crates/react_semantic_analysis/tests/fixtures/var-hoisting.js RenamedR compiler/crates/forget_semantic_analysis/tests/snapshots/[email protected] →compiler/crates/react_semantic_analysis/tests/snapshots/[email protected] RenamedR compiler/crates/forget_semantic_analysis/tests/snapshots/[email protected] →compiler/crates/react_semantic_analysis/tests/snapshots/[email protected] RenamedR compiler/crates/forget_semantic_analysis/tests/snapshots/[email protected] →compiler/crates/react_semantic_analysis/tests/snapshots/[email protected] RenamedR compiler/crates/forget_semantic_analysis/tests/snapshots/[email protected] →compiler/crates/react_semantic_analysis/tests/snapshots/[email protected] RenamedR compiler/crates/forget_semantic_analysis/tests/snapshots/[email protected] →compiler/crates/react_semantic_analysis/tests/snapshots/[email protected] RenamedR compiler/crates/forget_semantic_analysis/tests/snapshots/[email protected] →compiler/crates/react_semantic_analysis/tests/snapshots/[email protected] RenamedR compiler/crates/forget_semantic_analysis/tests/snapshots/[email protected] →compiler/crates/react_semantic_analysis/tests/snapshots/[email protected] RenamedR compiler/crates/forget_semantic_analysis/tests/snapshots/[email protected] →compiler/crates/react_semantic_analysis/tests/snapshots/[email protected] RenamedR compiler/crates/forget_semantic_analysis/tests/snapshots/[email protected] →compiler/crates/react_semantic_analysis/tests/snapshots/[email protected] RenamedR compiler/crates/forget_ssa/Cargo.toml →compiler/crates/react_ssa/Cargo.toml RenamedA compiler/crates/react_ssa/README.md AddedR compiler/crates/forget_ssa/src/eliminate_redundant_phis.rs →compiler/crates/react_ssa/src/eliminate_redundant_phis.rs RenamedR compiler/crates/forget_ssa/src/enter.rs →compiler/crates/react_ssa/src/enter.rs RenamedR compiler/crates/forget_ssa/src/leave.rs →compiler/crates/react_ssa/src/leave.rs RenamedR compiler/crates/forget_ssa/src/lib.rs →compiler/crates/react_ssa/src/lib.rs RenamedR compiler/crates/forget_utils/Cargo.toml →compiler/crates/react_utils/Cargo.toml RenamedR compiler/crates/forget_utils/README.md →compiler/crates/react_utils/README.md RenamedR compiler/crates/forget_utils/src/lib.rs →compiler/crates/react_utils/src/lib.rs RenamedR compiler/crates/forget_utils/src/pointer_address.rs →compiler/crates/react_utils/src/pointer_address.rs RenamedPatch
Files changed
Rendering syntax-highlighted changes…