Inherits from
Import, Usable, Editable, Importable, Expression, HasNameAttributes
alias
extended
extended_source
file
filepath
from_file
full_name
function_calls
import_specifier
import_statement
import_type
imported_exports
imported_symbol
is_dynamic
module
name
namespace
parent
parent_class
parent_function
parent_statement
resolved_symbol
resolved_value
source
symbol_name
to_file
to_file_id
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.get_import_string
Generates an import string for a Python import statement.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_aliased_import
Returns True if this import is aliased.is_child_of
Checks if this node is a descendant of the given editable instance in the AST.is_module_import
Determines if the import is a module-level or wildcard import.is_reexport
Returns true if the Import object is also an Export object.is_symbol_import
Returns True if this import is importing a symbol rather than a module.is_wildcard_import
Returns True if the import symbol is a wildcard import.is_wrapped_in
Check if this node is contained another node of the given classparent_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
Remove this import from the import statement.rename
Renames the import symbol and updates all its usages throughout 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().