MCPcopy Create free account
hub / github.com/SourceCode-AI/aura / bind

Method bind

aura/analyzers/python/nodes.py:968–974  ·  view source on GitHub ↗
(self, signature)

Source from the content-addressed store, hash-verified

966 return self.bind(sig)
967
968 def bind(self, signature) -> inspect.BoundArguments:
969 if isinstance(self.kwargs, Dictionary):
970 kw = self.kwargs.to_dict()
971 else:
972 kw = self.kwargs
973
974 return signature.bind(*self.args, **kw)
975
976 def match(self, other: Call, ctx) -> bool:
977 if type(other) != Call:

Callers 2

apply_signatureMethod · 0.95
__propagate_taintMethod · 0.80

Calls 1

to_dictMethod · 0.80

Tested by

no test coverage detected