コード例 #1
0
ファイル: representation.py プロジェクト: Axure/jedi
 def _get_params(self):
     """
     This returns the params for an TODO and is injected as a
     'hack' into the pr.Function class.
     This needs to be here, because Instance can have __init__ functions,
     which act the same way as normal functions.
     """
     return param.get_params(self._evaluator, self.base, self.var_args)
コード例 #2
0
 def _get_params(self):
     """
     This returns the params for an TODO and is injected as a
     'hack' into the pr.Function class.
     This needs to be here, because Instance can have __init__ functions,
     which act the same way as normal functions.
     """
     return param.get_params(self._evaluator, self.base, self.var_args)
コード例 #3
0
ファイル: arguments.py プロジェクト: BarnetteME1/DnD-stuff
 def get_params(self, execution_context):
     return get_params(execution_context, self)
コード例 #4
0
 def get_params(self, execution_context):
     return get_params(execution_context, self)
コード例 #5
0
ファイル: representation.py プロジェクト: DamnWidget/anaconda
 def get_params(self):
     return param.get_params(self, self.var_args)
コード例 #6
0
 def get_params(self):
     return param.get_params(self.evaluator, self.parent_context,
                             self.tree_node, self.var_args)
コード例 #7
0
ファイル: representation.py プロジェクト: andrewmw94/configs
 def get_params(self):
     return param.get_params(self.evaluator, self.parent_context, self.tree_node, self.var_args)
コード例 #8
0
ファイル: representation.py プロジェクト: yarivkenan/jedi
 def get_params(self):
     return param.get_params(self, self.var_args)