Module osbot_utils.helpers.ast.nodes.Ast_Constant
Expand source code
from osbot_utils.helpers.ast.Ast_Node import Ast_Node
class Ast_Constant(Ast_Node):
def info(self):
return {'Ast_Constant': {'value': self.value()}} # we need to use the actual value here
Classes
class Ast_Constant (node)
-
Expand source code
class Ast_Constant(Ast_Node): def info(self): return {'Ast_Constant': {'value': self.value()}} # we need to use the actual value here
Ancestors
Methods
def info(self)
-
Expand source code
def info(self): return {'Ast_Constant': {'value': self.value()}} # we need to use the actual value here