Module osbot_utils.helpers.ast.nodes.Ast_Lambda
Expand source code
from osbot_utils.utils.Dev import pprint
from osbot_utils.helpers.ast.Ast_Node import Ast_Node
class Ast_Lambda(Ast_Node):
def info(self):
return {'Ast_Lambda': { 'args' : self.args() ,
'body' : self.body() }}
Classes
class Ast_Lambda (node)
-
Expand source code
class Ast_Lambda(Ast_Node): def info(self): return {'Ast_Lambda': { 'args' : self.args() , 'body' : self.body() }}
Ancestors
Methods
def info(self)
-
Expand source code
def info(self): return {'Ast_Lambda': { 'args' : self.args() , 'body' : self.body() }}