Module osbot_utils.helpers.ast.nodes.Ast_Argument

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


class Ast_Argument(Ast_Node):

    def info(self):
        return {'Ast_Argument': {'arg': self.node.arg}}

Classes

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

    def info(self):
        return {'Ast_Argument': {'arg': self.node.arg}}

Ancestors

Methods

def info(self)
Expand source code
def info(self):
    return {'Ast_Argument': {'arg': self.node.arg}}