Module osbot_utils.helpers.ast.nodes.Ast_Attribute

Expand source code
from osbot_utils.utils.Dev import pprint
from osbot_utils.helpers.ast.Ast_Node import Ast_Node

class Ast_Attribute(Ast_Node):

    def info(self):
        return {'Ast_Attribute': { 'attr'  : self.node.attr,
                                   'ctx'   : self.ctx  ()  ,
                                   'value' : self.value()  }}

Classes

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

    def info(self):
        return {'Ast_Attribute': { 'attr'  : self.node.attr,
                                   'ctx'   : self.ctx  ()  ,
                                   'value' : self.value()  }}

Ancestors

Methods

def info(self)
Expand source code
def info(self):
    return {'Ast_Attribute': { 'attr'  : self.node.attr,
                               'ctx'   : self.ctx  ()  ,
                               'value' : self.value()  }}