Skip to main content

Inherits from

Expression, HasName, Editable

Attributes

args

attribute_chain

base

call_chain

extended

extended_source

file

filepath

full_name

function_calls

function_definition

function_definitions

is_awaited

name

parent

parent_class

parent_function

parent_statement

predecessor

promise_chain

resolved_value

source

successor

variable_usages

Methods

ancestors

Find all ancestors of the node of the given type. Does not return itself

asyncify

Converts the function call to an async function call by wrapping it with ‘await’.

convert_args_to_kwargs

Converts positional arguments in a function call to keyword arguments.

edit

Replace the source of this Editable 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 given

flag

Adds a visual flag comment to the end of this Editable’s source text.

from_usage

Creates a FunctionCall object from an Editable instance that represents a function call.

get_arg_by_index

Returns the Argument with the given index from the function call’s argument list.

get_arg_by_parameter_name

Returns an argument by its parameter name.

get_name

Returns the name node of the object.

get_variable_usages

Returns Editables for all TreeSitter nodes corresponding to instances of variable usage

insert_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 class

parent_of_type

Find the first ancestor of the node of the given type. Does not return itself

parent_of_types

Find the first ancestor of the node of the given type. Does not return itself

reduce_condition

Reduces an editable to the following condition

remove

Removes a node and optionally its related extended nodes.

rename

Sets the name of an object and updates all its usages.

replace

Search and replace occurrences of text within this node’s source and its extended nodes. Returns a list of all regex match of regex_pattern, similar to python’s re.search().

set_kwarg

Set a keyword argument in a function call.

set_name

Sets the name of a code element.