Module osbot_utils.helpers.ast.nodes.Ast_Unary_Op
Expand source code
from osbot_utils.helpers.ast.Ast_Node import Ast_Node
class Ast_Unary_Op(Ast_Node):
def info(self):
return {'Ast_Unary_Op': {'op' : self.op() ,
'operand': self.operand()}}
Classes
class Ast_Unary_Op (node)
-
Expand source code
class Ast_Unary_Op(Ast_Node): def info(self): return {'Ast_Unary_Op': {'op' : self.op() , 'operand': self.operand()}}
Ancestors
Methods
def info(self)
-
Expand source code
def info(self): return {'Ast_Unary_Op': {'op' : self.op() , 'operand': self.operand()}}