Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update getComments.js #29002

Closed
wants to merge 1 commit into from
Closed

Conversation

AnuragKacham
Copy link

Added two scenarios:

  1. Commented starting on the line 20:

Created a map of comments by line number. It then uses this map to find the comments on the line before the node at the given path. This should be more efficient than the original function if the number of comments is large and they are not sorted by line number. However, it does require additional memory to store the map.

  1. Lines 41 - 47 and commented 48 - 52:

We store the line number of the first comment we find that is on the line before the node. We then continue to add comments to the comments array until we find a comment that is not on this line.

This optimization reduces the number of iterations in the second while loop, but it doesn't change the overall time complexity of the function. The time complexity is still O(n), where n is the number of comments. This is because in the worst case, we still have to iterate through all the comments.

Summary

How did you test this change?

Added two scenarios:

1. Commented starting on the line 20:

Created a map of comments by line number. It then uses this map to find the comments on the line before the node at the given path. This should be more efficient than the original function if the number of comments is large and they are not sorted by line number. However, it does require additional memory to store the map.

2. Lines 41 - 47 and commented 48 - 52:

We store the line number of the first comment we find that is on the line before the node. We then continue to add comments to the comments array until we find a comment that is not on this line.

This optimization reduces the number of iterations in the second while loop, but it doesn't change the overall time complexity of the function. The time complexity is still O(n), where n is the number of comments. This is because in the worst case, we still have to iterate through all the comments.
@facebook-github-bot
Copy link

Hi @AnuragKacham!

Thank you for your pull request and welcome to our community.

Action Required

In order to merge any pull request (code, docs, etc.), we require contributors to sign our Contributor License Agreement, and we don't seem to have one on file for you.

Process

In order for us to review and merge your suggested changes, please sign at https://code.facebook.com/cla. If you are contributing on behalf of someone else (eg your employer), the individual CLA may not be sufficient and your employer may need to sign the corporate CLA.

Once the CLA is signed, our tooling will perform checks and validations. Afterwards, the pull request will be tagged with CLA signed. The tagging process may take up to 1 hour after signing. Please give it that time before contacting us about it.

If you have received this in error or have any questions, please contact us at cla@meta.com. Thanks!

@AnuragKacham
Copy link
Author

Please review the changes mentioned.

Added two scenarios:

  1. Commented starting on the line 20:

Created a map of comments by line number. It then uses this map to find the comments on the line before the node at the given path. This should be more efficient than the original function if the number of comments is large and they are not sorted by line number. However, it does require additional memory to store the map.

  1. Lines 41 - 47 and commented 48 - 52:

We store the line number of the first comment we find that is on the line before the node. We then continue to add comments to the comments array until we find a comment that is not on this line.

This optimization reduces the number of iterations in the second while loop, but it doesn't change the overall time complexity of the function. The time complexity is still O(n), where n is the number of comments. This is because in the worst case, we still have to iterate through all the comments.

@rickhanlonii
Copy link
Member

Thanks for the PR, but we generally don't take PRs that make small refactors. They very rarely help and usually tend to introduce subtle bugs. Since this only runs for tests, we don't need a micro optimization.

@react-sizebot
Copy link

Comparing: 46abd7b...075c19f

Critical size changes

Includes critical production bundles, as well as any change greater than 2%:

Name +/- Base Current +/- gzip Base gzip Current gzip
oss-stable/react-dom/cjs/react-dom.production.js = 6.66 kB 6.66 kB = 1.82 kB 1.82 kB
oss-stable/react-dom/cjs/react-dom-client.production.js = 492.61 kB 492.61 kB = 87.88 kB 87.88 kB
oss-experimental/react-dom/cjs/react-dom.production.js = 6.67 kB 6.67 kB +0.05% 1.83 kB 1.83 kB
oss-experimental/react-dom/cjs/react-dom-client.production.js = 498.86 kB 498.86 kB = 88.93 kB 88.93 kB
facebook-www/ReactDOM-prod.classic.js = 591.22 kB 591.22 kB = 103.96 kB 103.96 kB
facebook-www/ReactDOM-prod.modern.js = 567.44 kB 567.44 kB = 100.36 kB 100.36 kB
test_utils/ReactAllWarnings.js Deleted 64.26 kB 0.00 kB Deleted 16.02 kB 0.00 kB

Significant size changes

Includes any change greater than 0.2%:

Expand to show
Name +/- Base Current +/- gzip Base gzip Current gzip
test_utils/ReactAllWarnings.js Deleted 64.26 kB 0.00 kB Deleted 16.02 kB 0.00 kB

Generated by 🚫 dangerJS against 075c19f

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants