-
Notifications
You must be signed in to change notification settings - Fork 65
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
Extract node_comments to new module, return nodes instead of strings #450
Open
amyreese
wants to merge
3
commits into
gh/amyreese/1/base
Choose a base branch
from
gh/amyreese/1/head
base: gh/amyreese/1/base
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
# Copyright (c) Meta Platforms, Inc. and affiliates. | ||
# | ||
# This source code is licensed under the MIT license found in the | ||
# LICENSE file in the root directory of this source tree. | ||
|
||
from typing import Generator, Optional, Sequence | ||
|
||
from libcst import ( | ||
BaseSuite, | ||
Comma, | ||
Comment, | ||
CSTNode, | ||
Decorator, | ||
EmptyLine, | ||
IndentedBlock, | ||
LeftSquareBracket, | ||
Module, | ||
RightSquareBracket, | ||
SimpleStatementSuite, | ||
TrailingWhitespace, | ||
) | ||
from libcst.metadata import MetadataWrapper, ParentNodeProvider, PositionProvider | ||
|
||
|
||
def node_comments( | ||
node: CSTNode, metadata: MetadataWrapper | ||
) -> Generator[Comment, None, None]: | ||
""" | ||
Yield all comments associated with the given node. | ||
|
||
Includes comments from both leading comments and trailing inline comments. | ||
""" | ||
parent_nodes = metadata.resolve(ParentNodeProvider) | ||
positions = metadata.resolve(PositionProvider) | ||
target_line = positions[node].end.line | ||
|
||
def gen(node: CSTNode) -> Generator[Comment, None, None]: | ||
while not isinstance(node, Module): | ||
# trailing_whitespace can either be a property of the node itself, or in | ||
# case of blocks, be part of the block's body element | ||
tw: Optional[TrailingWhitespace] = getattr( | ||
node, "trailing_whitespace", None | ||
) | ||
if tw is None: | ||
body: Optional[BaseSuite] = getattr(node, "body", None) | ||
if isinstance(body, SimpleStatementSuite): | ||
tw = body.trailing_whitespace | ||
elif isinstance(body, IndentedBlock): | ||
tw = body.header | ||
|
||
if tw and tw.comment: | ||
yield tw.comment | ||
|
||
comma: Optional[Comma] = getattr(node, "comma", None) | ||
if isinstance(comma, Comma): | ||
tw = getattr(comma.whitespace_after, "first_line", None) | ||
if tw and tw.comment: | ||
yield tw.comment | ||
|
||
rb: Optional[RightSquareBracket] = getattr(node, "rbracket", None) | ||
if rb is not None: | ||
tw = getattr(rb.whitespace_before, "first_line", None) | ||
if tw and tw.comment: | ||
yield tw.comment | ||
|
||
el: Optional[Sequence[EmptyLine]] = None | ||
lb: Optional[LeftSquareBracket] = getattr(node, "lbracket", None) | ||
if lb is not None: | ||
el = getattr(lb.whitespace_after, "empty_lines", None) | ||
if el is not None: | ||
for line in el: | ||
if line.comment: | ||
yield line.comment | ||
|
||
el = getattr(node, "lines_after_decorators", None) | ||
if el is not None: | ||
for line in el: | ||
if line.comment: | ||
yield line.comment | ||
|
||
ll: Optional[Sequence[EmptyLine]] = getattr(node, "leading_lines", None) | ||
if ll is not None: | ||
for line in ll: | ||
if line.comment: | ||
yield line.comment | ||
if not isinstance(node, Decorator): | ||
# stop looking once we've gone up far enough for leading_lines, | ||
# even if there are no comment lines here at all | ||
break | ||
|
||
parent = parent_nodes.get(node) | ||
if parent is None: | ||
break | ||
node = parent | ||
|
||
# comments at the start of the file are part of the module header rather than | ||
# part of the first statement's leading_lines, so we need to look there in case | ||
# the reported node is part of the first statement. | ||
if isinstance(node, Module): | ||
for line in node.header: | ||
if line.comment: | ||
yield line.comment | ||
else: | ||
parent = parent_nodes.get(node) | ||
if isinstance(parent, Module) and parent.body and parent.body[0] == node: | ||
for line in parent.header: | ||
if line.comment: | ||
yield line.comment | ||
|
||
# wrap this in a pass-through generator so that we can easily filter the results | ||
# to only include comments that are located on or before the line containing | ||
# the original node that we're searching from | ||
yield from (c for c in gen(node) if positions[c].end.line <= target_line) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
# Copyright (c) Meta Platforms, Inc. and affiliates. | ||
# | ||
# This source code is licensed under the MIT license found in the | ||
# LICENSE file in the root directory of this source tree. | ||
|
||
from textwrap import dedent | ||
from unittest import TestCase | ||
|
||
import libcst.matchers as m | ||
from libcst import MetadataWrapper, parse_module | ||
|
||
from ..comments import node_comments | ||
|
||
|
||
class CommentsTest(TestCase): | ||
def test_node_comments(self) -> None: | ||
for idx, (code, test_cases) in enumerate( | ||
( | ||
( | ||
""" | ||
# module-level comment | ||
print("hello") # trailing comment | ||
""", | ||
( | ||
(m.Call(func=m.Name("something")), ()), | ||
(m.Call(), ["# module-level comment", "# trailing comment"]), | ||
), | ||
), | ||
( | ||
""" | ||
import sys | ||
|
||
# leading comment | ||
print("hello") # trailing comment | ||
""", | ||
((m.Call(), ["# leading comment", "# trailing comment"]),), | ||
), | ||
( | ||
""" | ||
import sys | ||
|
||
# leading comment | ||
@alpha # first decorator comment | ||
# between-decorator comment | ||
@beta # second decorator comment | ||
# after-decorator comment | ||
class Foo: # trailing comment | ||
pass | ||
""", | ||
( | ||
( | ||
m.ClassDef(), | ||
[ | ||
"# leading comment", | ||
"# after-decorator comment", | ||
"# trailing comment", | ||
], | ||
), | ||
( | ||
m.Decorator(decorator=m.Name("alpha")), | ||
["# leading comment", "# first decorator comment"], | ||
), | ||
), | ||
), | ||
), | ||
start=1, | ||
): | ||
code = dedent(code) | ||
module = parse_module(code) | ||
wrapper = MetadataWrapper(module, unsafe_skip_copy=True) | ||
for idx2, (matcher, expected) in enumerate(test_cases): | ||
with self.subTest(f"node comments {idx}-{chr(ord('a')+idx2)}"): | ||
for node in m.findall(module, matcher): | ||
comments = [c.value for c in node_comments(node, wrapper)] | ||
self.assertEqual(sorted(expected), sorted(comments)) |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: you can always get back to the module with
self.wrapper.module