Ejemplo n.º 1
0
 def __init__(self, lexer, debug=False):
     """ create a Ezhil Interpeter and initialize runtime builtins etc.. in a RAII fashion,
         and associates a Ezhil parser object with this class
     """
     Interpreter.__init__(self, lexer, debug)
     Interpreter.change_parser(self, EzhilParser.factory)
     return
Ejemplo n.º 2
0
 def __init__(self, **kwargs ):
     """ create a Ezhil Interpeter and initialize runtime builtins etc.. in a RAII fashion,
         and associates a Ezhil parser object with this class
     """
     Interpreter.__init__(self,**kwargs)
     Interpreter.change_parser(self,EzhilParser.factory)
     return
Ejemplo n.º 3
0
 def __init__(self, lexer, debug ):
     Interpreter.__init__(self,lexer,debug)
     Interpreter.change_parser(self,EzhilParser.factory)
     return
Ejemplo n.º 4
0
 def __init__(self, lexer, debug):
     Interpreter.__init__(self, lexer, debug)
     Interpreter.change_parser(self, EzhilParser.factory)
     return