Inherits from
PyAssignmentStatement, Attribute, AssignmentStatement, Usable, HasValue, Statement, Editable, Importable, Expression, HasNameAttributes
assignment
assignments
extended
extended_source
file
filepath
full_name
function_calls
index
is_optional
is_private
left
name
nested_code_blocks
nested_statements
parent
parent_class
parent_function
parent_statement
resolved_value
right
source
value
variable_usages
Methods
ancestors
Find all ancestors of the node of the given type. Does not return itselfdependencies
Returns a list of symbols that this symbol depends on.edit
Replace the source of thisEditable with new_src.
find
Find and return matching nodes or substrings within an Editable instance.find_string_literals
Returns a list of string literals within this node’s source that match any of the givenflag
Adds a visual flag comment to the end of this Editable’s source text.from_assignment
Creates a PyAssignmentStatement instance from a TreeSitter assignment node.get_name
Returns the name node of the object.get_variable_usages
Returns Editables for all TreeSitter nodes corresponding to instances of variable usageinsert_after
Inserts code after this node.insert_before
Inserts text before this node’s source with optional indentation and newline handling.is_child_of
Checks if this node is a descendant of the given editable instance in the AST.is_wrapped_in
Check if this node is contained another node of the given classlocal_usages
Returns all instances where this attribute is used within its parent code block.parent_of_type
Find the first ancestor of the node of the given type. Does not return itselfparent_of_types
Find the first ancestor of the node of the given type. Does not return itselfreduce_condition
Reduces an editable to the following conditionremove
Deletes this Node and its related extended nodes (e.g. decorators, comments).rename
Renames a symbol and updates all its references in the codebase.replace
Search and replace occurrences of text within this node’s source and its extended nodes.search
Returns a list of all regex match ofregex_pattern, similar to python’s re.search().