Module osbot_utils.helpers.ast.nodes.Ast_Name

Expand source code
from osbot_utils.helpers.ast.Ast_Node import Ast_Node

class Ast_Name(Ast_Node):

    def info(self):
        return {'Ast_Name': {'ctx': self.ctx()}, 'id': self.id() }

Classes

class Ast_Name (node)
Expand source code
class Ast_Name(Ast_Node):

    def info(self):
        return {'Ast_Name': {'ctx': self.ctx()}, 'id': self.id() }

Ancestors

Methods

def info(self)
Expand source code
def info(self):
    return {'Ast_Name': {'ctx': self.ctx()}, 'id': self.id() }