-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[F823] Warn when variable name is referenced before assignment
ghstack-source-id: 645a993bdb048f22b13a8a20ad02309c7fb1fcd6 Pull Request resolved: #277
- Loading branch information
Showing
1 changed file
with
97 additions
and
0 deletions.
There are no files selected for viewing
97 changes: 97 additions & 0 deletions
97
src/fixit/rules/pyflakes/no_reference_before_assignment.py
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,97 @@ | ||
# 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. | ||
|
||
import libcst as cst | ||
|
||
from fixit import CstLintRule, InvalidTestCase as Invalid, ValidTestCase as Valid | ||
|
||
|
||
class NoReferenceBeforeAssignmentRule(CstLintRule): | ||
""" | ||
Local variables should be defined before the are referenced. | ||
Autofix: N/A | ||
""" | ||
|
||
CUSTOM_MESSAGE = ("Local variable {name} was referenced without " | ||
"being defined in the current scope. Either define" | ||
" it locally or use the `global` keyword to access" | ||
" a global variable.") | ||
|
||
METADATA_DEPENDENCIES = (cst.metadata.ScopeProvider,) | ||
|
||
def __init__(self) -> None: | ||
super().__init__() | ||
|
||
def visit_Name(self, node: cst.Name) -> None: | ||
try: | ||
metadata = self.get_metadata(cst.metadata.ScopeProvider, node) | ||
assert metadata is not None | ||
accesses = metadata.accesses | ||
except KeyError: | ||
# Not all Names have ExpressionContext | ||
return | ||
for access in accesses: | ||
if access.node is node and len(access.referents) == 0: | ||
assert isinstance(access.node, cst.Name) | ||
name = access.node.value | ||
self.report(node, self.CUSTOM_MESSAGE.format(name=name)) | ||
|
||
VALID = [ | ||
Valid( | ||
""" | ||
y = 2 + 3 | ||
""" | ||
), | ||
Valid( | ||
""" | ||
a = 2 | ||
y = a + 3 | ||
""" | ||
), | ||
Valid( | ||
""" | ||
a = 2 | ||
def fn(): | ||
return a + 3 | ||
""" | ||
), | ||
Valid( | ||
""" | ||
a = abs(1.333) | ||
""" | ||
), | ||
Valid( | ||
""" | ||
a = [2**i for i in (1, 2, 3)] | ||
""" | ||
), | ||
] | ||
|
||
INVALID = [ | ||
Invalid( | ||
""" | ||
y = a + 3 | ||
a = 2 | ||
""" | ||
), | ||
Invalid( | ||
""" | ||
def fn(): | ||
return a + 3 | ||
""" | ||
), | ||
Invalid( | ||
""" | ||
a = foo(1.333) | ||
""" | ||
), | ||
Invalid( | ||
""" | ||
a = [2**j for i in (1, 2, 3)] | ||
""" | ||
), | ||
] |